Java web development without Eclipse

I'm interested in doing some Java web development, but I'm not very interested in using Eclipse. I have used Eclipse in the past, and it seems to me that it adds an abstraction layer that really doesn't interest me. However, I have a little problem with the upstart.

Does anyone have any good links / tutorials on getting up and running Java web development without using Eclipse (or any other IDE, for that matter)?

+6
source share
2 answers

Create a maven project and use one of the built-in web servers like jetty or Glassfish.

In addition, this approach allows you to work with the command line directly or use Netbeans, Eclipse, or IntelliJ as an IDE because they support Maven projects. I don't think JDeveloper can still.

(Eclipse may require the m2e plugin from the market, and it will handle the entire Eclipse configuration transparently and directly. Highly recommended).

+4
source

You can easily create a java site using only notepad. The additional work is that you need to write additional code (for example, in the servlet you need to write web.xml http://www.tutorialspoint.com/servlets/servlets-first-example.htm ). In the structure of Struts, Hibernate, and Spring, you must write the configuration file to notepad.

+1
source

Source: https://habr.com/ru/post/918624/


All Articles