What web server should I use with NetBeans? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-24T14:35:56Z http://stackoverflow.com/feeds/question/145017 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/145017/what-web-server-should-i-use-with-netbeans 3 What web server should I use with NetBeans? Chris Sutton 2008-09-28T02:26:03Z 2008-10-23T04:27:12Z <p>I haven't been around Java development for 8 years, but am starting to build a NetBeans Web Application. When I walk through the Web Application wizard, it asks for the server I'm going to be using. </p> <p>What would be the best and simplest server for me to start using with NetBeans?</p> http://stackoverflow.com/questions/145017/what-web-server-should-i-use-with-netbeans/145075#145075 3 Answer by Alan for What web server should I use with NetBeans? Alan 2008-09-28T02:53:54Z 2008-09-28T02:53:54Z <p>Since the NetBeans IDE is a Sun product, I would assume that the Glassfish application server would be a natural fit.</p> <p>That said, one of the pluses of developing a web application in Java is that the interface for working with the http is standardized (i.e. the Servlet specification), so that you can pick any servlet container you want: be it Glassfish, Tomcat, Jetty or Weblogic. Since it sounds to me that you're experimenting and you want to use something easy to administer, I might go with Glassfish. However, be open to revisit that decision when you need to actually deploy your web application in a production environment. Be sure to check out other options like Tomcat or Jetty.</p> http://stackoverflow.com/questions/145017/what-web-server-should-i-use-with-netbeans/149047#149047 0 Answer by James Schek for What web server should I use with NetBeans? James Schek 2008-09-29T14:58:43Z 2008-09-29T14:58:43Z <p>Unless you are deploying to a full J2EE application server, I would recommend using Tomcat. Tomcat can run as a standalone web/servlet/jsp server and avoids some of the complexities of a full J2EE app server.</p> <p>The web development bundle for Netbeans will include installers for and automated integration with Glassfish and Tomcat. You will get the "best" experience using Netbeans with those servers.</p> <p>That said, the workflow in Netbeans can be easily integrated with other application servers. As of 6.1, this includes Sun Java System Application Server 8 and 9, GlassFish v1 and v2, Apache Tomcat 4, 5 and 6, JBoss 4, BEA WebLogic 10, IBM WebSphere 6.0 and 6.1, Sailfin V1. See the <a href="http://www.netbeans.org/features/web/java-ee.html" rel="nofollow">Netbeans J2EE Features</a> site for more info.</p> http://stackoverflow.com/questions/145017/what-web-server-should-i-use-with-netbeans/228524#228524 0 Answer by melling for What web server should I use with NetBeans? melling 2008-10-23T04:19:17Z 2008-10-23T04:19:17Z <p>Glassfish is actually an easy to use app server. I think it's easier for a beginner to use and it's integrated with Netbeans. Setting up database connection caches is easy, for example.</p> <p>You administer the server through this web page:</p> <pre><code>http://localhost:4848 </code></pre> <p>(login: admin, password: adminadmin)</p> <p>Glassfish will run your apps on port 8080. </p> <p>The Glassfish home page: <a href="http://glassfish.dev.java.net" rel="nofollow">http://glassfish.dev.java.net</a> (don't really need to read)</p> <p>For non-Netbeans users there's a QuickStart guide:</p> <pre><code>http://glassfish.dev.java.net/downloads/quickstart/index.html </code></pre> <p>Here's a screencast overview:</p> <pre><code>http://download.java.net/javaee5/screencasts/admin-console/index.html </code></pre> <p>At some point you will want to learn Tomcat too because it's so prevalent, but Glassfish is a much friendlier start. In fact, it's probably better as a production server too, if you can find an affordable host.</p>