About 920,000 results
Open links in new tab
  1. Simple HTTP server in Java using only Java SE API

    Sep 17, 2010 · Since Java SE 6, there's a builtin HTTP server in Sun Oracle JRE. The Java 9 module name is jdk.httpserver. The com.sun.net.httpserver package summary outlines the involved classes …

  2. Create a simple HTTP server with Java? - Stack Overflow

    Apr 26, 2010 · 5 Java 6 has a default embedded http server. Check the thread here By the way, if you plan to have a rest web service, here is a simple example using jersey.

  3. java - Difference between web server and application server - Stack ...

    Jun 25, 2013 · As a layman, how do I understand the difference between web server and application server ? If you could give an example using a Java based web app in very "simple" terms that would …

  4. html - How to send HTTP request in Java? - Stack Overflow

    Sep 1, 2009 · In Java, How to compose an HTTP request message and send it to an HTTP web server?

  5. webserver - Tiniest Java web server - Stack Overflow

    Dec 20, 2011 · I need the simplest web server to write a minimal web interface for an application. It should be something really featureless like Webrick from Ruby's standard library or …

  6. ssl - Simple Java HTTPS server - Stack Overflow

    Feb 22, 2010 · I need to set up a really lightweight HTTPS server for a Java application. It's a simulator that's being used in our development labs to simulate the HTTPS connections accepted by a piece of …

  7. What is the difference between application server and web server?

    Jun 2, 2009 · A web container in Java terms is an application server that basically only implements the JSP/Servlet part of Java EE and lacks several core parts of Java EE, such as EJB support.

  8. What web server should I use if I want to run Java code behind it?

    Mar 14, 2010 · The standard concept for running code inside a web server is the "Servlet API" from Sun. Essentially it provides a few interfaces which the web server uses to invoke your code, and defines …

  9. What is the difference between web server, web container and ...

    Web container also known as a Servlet container is the component of a web server that interacts with Java servlets. A web container is responsible for managing the lifecycle of servlets, mapping a URL …

  10. Java EE Application with Web Server - Stack Overflow

    Apr 14, 2013 · Is there a need for a Java EE application to have web servers such as SUN Java Web Server to handle the servlet/jsp request and forward to Application Servers such as IBM WebSphere …