java classes and database queries
Can someone please explain the best way to solve this problem.
Understanding the meaning of “multiple lifecycles application development”?
Some Agile job posts have a requirement “strong understanding of multiple lifecycles application development”, what does it means ?
Controller JSP – no view
Most people say do not use JSPs. But what if I have a JSP that does not show anything, it only acts as a controller? Why would I do that? Because we do not need to redeploy complete webapp to make a small but significant change in a servlet -> instead can just put my new JSP in the JBoss tmp folder till we do a full deploy.
How will writing the transaction part in Java benefit the security of the application, when all other parts are being written in PHP?
A friend of mine while working on a PHP application asked me to write one part of the application in Java. The part that involved transactions. He said it will be better to write this portion in Java. He talked about how secure it will be!
How will writing the transaction part in Java benefit the security of the application, when all other parts are being written in PHP?
A friend of mine while working on a PHP application asked me to write one part of the application in Java. The part that involved transactions. He said it will be better to write this portion in Java. He talked about how secure it will be!
How will writing the transaction part in Java benefit the security of the application, when all other parts are being written in PHP?
A friend of mine while working on a PHP application asked me to write one part of the application in Java. The part that involved transactions. He said it will be better to write this portion in Java. He talked about how secure it will be!
How will writing the transaction part in Java benefit the security of the application, when all other parts are being written in PHP?
A friend of mine while working on a PHP application asked me to write one part of the application in Java. The part that involved transactions. He said it will be better to write this portion in Java. He talked about how secure it will be!
How will writing the transaction part in Java benefit the security of the application, when all other parts are being written in PHP?
A friend of mine while working on a PHP application asked me to write one part of the application in Java. The part that involved transactions. He said it will be better to write this portion in Java. He talked about how secure it will be!
Creating a separate project for JPA entities
Where I work it is a common practice to create a separate for JPA entities and a project for the web application (the WAR). So basically you have (at least) two project for each application – appJPA and appWEB.
Applying DDD principles in a RESTish web service
I am developing an RESTish web service. I think I got the idea of the difference between aggregation and composition. Aggregation does not enforce lifecycle/scope on the objects it references. Composition does enforce lifecycle/scope on the objects it contain/own.