where you use thread in your java project?
Answer / sathish reddy
There are many and varied uses for threads.
If your Java application is a server, like a web server,
then you might want to be servicing more than one client at
a time. Thus you may have one thread per client.
An interactive Java application migth need to do something
that takes some time, for example calculate something
complex or drag down data from a server. In this case you
might want to do the time consuming work in one thread while
your user interface is in another thread displaying a
"Working, press Cancel if you want me to stop" dialog.
There are also situations where you need to compute A, B and
C, each of which takes time but can be done in no particular
order. In that case it may be quicker to do them each in
their own thread rather than one after the other.
Until a few years ago processors were getting faster and
faster. Today procesors are pretty much going as fast as
they can with current technology. Instead processors are
being given more and more "cores", each core being able to
run one thread. One of the challenges facing computer
science now is moving to models that better support the
hardware we're now running on.
| Is This Answer Correct ? | 4 Yes | 1 No |
kindly can any one post for me portlet,hibernate,spring example code and configuration,and some related tutorials plz its urgent for me....thanks in advance ............
How can link tag’s action attribute be used?
multiple instances for action class is it possible
how to develop the submit and search operations in single jsp using struts?
Is Struts Action class Thread Safe?
i have 500 jsps in my application,and i have same forward name for each jsp,so it lokks in strutsconfig.xml,from 1 to 500,but i want send 498 page directly,how can i cingigure my application
how to connect from struts to database through hibernet and where u can modify the class
Why are struts tightly coupled?
What is the use of forwardaction?
How data transfered from one formbean to another formbean?
What is the purpose of @conversion annotation annotation?
What are Struts properties?