JDK Java EE 7 without GlassFish

0

I'm trying to install the Java Enterprise Edition JDK and would like to know if you have any installation options without GlassFish 4, I want to use TomCat and not GlassFish, so have some way to install without, or remove just GlassFish? Or will not it make a difference or influence TomCat?

    
asked by anonymous 21.10.2014 / 02:33

2 answers

1

Even though Glassfish is installed at the time you install the JavaEE JDK, you can use any other Application Server (or Container) without interference between them, provided you ensure that do not try to use same connection port (as far as I know, by default they are already different).

You can uninstall Glassfish like any other application without any problems and there will be no problem, and reinstall it like any other application.

    
21.10.2014 / 10:17
1

From what I read in the downloads page Java EE 7 SDK is already included with GlassFish but, this should not be of concern to you, since the choice of server to be used is made at the time of creation of the project. You only have to choose Tomcat from the list of options.

    
21.10.2014 / 09:17