Create a site with JAVA programming? [closed]

-1

I would like to know how I could start to create a simple website through JAVA programming. If anyone can help or indicate some tutorial, thank you very much! Thanks

    
asked by anonymous 26.02.2015 / 14:01

1 answer

4

There are many alternatives to do this. But overall, the idea consists of:

  • HTML page having a form for the user to enter the necessary information;
  • Once with the information, a server receives this information and consumes it (this is where Java enters!) and returns something;
  • The page then responds to the server response, showing what the client wants.
  • A library with java that can help in your intent is Apache HttpClient for sending requests and responses by HTTP . For the server, you can use Apache Tomcat or Apache Hadoop .

    I am giving a very superficial answer with some recommendations because the question is VERY .

        
    26.02.2015 / 14:09