1

I am required to pick up java (with basic previous experiences) + 1 specific application framework, having spending most of my times in Python and Django. Chose Spring mainly due to my requirements.

May I know what could be the equivalent of Django's development server in Java so I can easily run and check my Java code?

goh
  • 27,631
  • 28
  • 89
  • 151

3 Answers3

3

You can deploy a web app using Spring to any Java EE app server. I'd say that the simplest choice would be Tomcat, the Apache servlet/JSP engine.

duffymo
  • 305,152
  • 44
  • 369
  • 561
0

I would also suggest Jetty which is a lightweight servlet container like Tomcat, but keep in mind the problems regarding deployment of Java EE applications mentioned in this thread Can Jetty be used as a Java EE lightweight application server?.

Another alternative is Glassfish.

Community
  • 1
  • 1
BartoszMiller
  • 1,245
  • 1
  • 15
  • 24
0

If you are working with netbeans then Glassfish is a good fit since there is very good integration between the two.

Burhan Khalid
  • 169,990
  • 18
  • 245
  • 284