we have two applications A1 & A2 both are accesing the same
databse table employee at the same time how we will manage
this so that both application can get the correct no of
emloyee while A1 is inserting a employee at the same time
while other applicatuion is getting the empployee list.
Answers were Sorted based on User's Feedback
Answer / krish
By implementing the class with SingleTheeadModel interface.
(Or) by writing the separate synchronized methods for insert
and retrieve methods. (or)by avoiding to declare Connection
object as instance variable.
| Is This Answer Correct ? | 14 Yes | 0 No |
Answer / abdul
This can be done thru JDBC isolation properties., there
were some ISOLATION LEVEL where you can achive this.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / shaik baji
If it is a simple and small application synchronize the
Connection object other wise set the lock on the respective
table.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / aravind
I hope version checking concept will help you in this case.
| Is This Answer Correct ? | 2 Yes | 8 No |
What do you mean by a custom tag?
How to get data from the velocity page in a action class?
Why we use struts over servlets?
How Struts will follow the MVC?
Why it called struts?
What happens when Two users requests for same action class? How the threads are controlled?
why servlet is used as controller not JSP?
What are the struts2 error message keys that can come during file uploading process?
What are the steps of struts installation?
tell me struts flow ?
5 Answers BA Continnum Solutions, Exira, Fidelity, iGate,
Hai all.Can i develope Struts action class without execute(-,- ,-,-)method.Ifd it's possible plz provide some sample code.
Explain struts?