PROGRAMMING : top 10ish J2EE tips
The top 10 (more or less) J2EE best practices
I agree with most of these (maybe not the JSP one..) and absolutely, categorically agree with "7. Use stateless session beans instead of stateful session beans."
I find it really hard to think of situations where session information has to be stored on the application server side - typically it is designed poorly if you do.
The web server side of things has to, because it is providing the interaction with the user, but to acheive a certain BL goal why do you have to flit back and forth?
I agree with most of these (maybe not the JSP one..) and absolutely, categorically agree with "7. Use stateless session beans instead of stateful session beans."
I find it really hard to think of situations where session information has to be stored on the application server side - typically it is designed poorly if you do.
The web server side of things has to, because it is providing the interaction with the user, but to acheive a certain BL goal why do you have to flit back and forth?
0 Comments:
Post a Comment
<< Home