Improving design time when building Java EE applications

One problematic aspect of creating Java EE applications is the time it takes to edit, compile, and deploy. I tried using Jetty, but even if you have some problems after making a few changes, you will usually encounter a memory error.

I am currently using Netbeans and I can see changes at the presentation level without redeployment, but when making changes to the model, a complete rebuild is required and some problems may occur.

What are some recommendations for improving this aspect of the process?

0


source to share


2 answers


Alarming? Indeed? How long are your projects?



I think Spring dm Server can get started on the roads with its OSGi technology. It supports modular deployments and you can quickly deploy / deploy individual modules.

+1


source


You can use JavaRebel



+2


source







All Articles