Hi,
is it possible to run Spring Web with the build in Java 6 Http Server?
Thank you.
Hi,
is it possible to run Spring Web with the build in Java 6 Http Server?
Thank you.
The mimimal requirement for the latest Spring is only jdk1.5, so it should run on jdk1.6 without problem.
If you have a http server that is built only for jdk6, then you must be running a pretty nosy bleed codes. Good luck with that.![]()
http://www.jroller.com/thebugslayer - notes on java, scala and other development stuff.
I meant this:
http://java.sun.com/javase/6/docs/jr...e-summary.html
That seems like Sun's private library. I never used before. I usually don't use the jdk package that starting with com.sun unless we really have no choice.
If the embeded server works for you, why don't you simply start the server and run one of spring sample app?
I know springmvc is just a standard Servlet based app, and it runs on any web container like Tomcat or Jetty no problem.
http://www.jroller.com/thebugslayer - notes on java, scala and other development stuff.
I'm not familiar with this Sun library, but it appears to be just a HTTP server. Spring Web is built on the Servlet APIs so it requires a Servlet container, so this won't work.