Java SE和Java EE之间的主要区别是什么?

问题描述:

Java SE和Java EE之间的主要区别是什么?

What's the main difference between Java SE and Java EE?

Java SE (以前J2SE)是基本的Java环境。在Java SE中,使用API​​ 在此处描述的API,使用Java制作所有标准程序。您只需要一个JVM即可使用Java SE。

Java SE (formerly J2SE) is the basic Java environment. In Java SE, you make all the "standards" programs with Java, using the API described here. You only need a JVM to use Java SE.

Java EE (以前称为J2EE)是Java的企业版。有了它,您可以创建网站,Java Bean和更强大的服务器应用程序。除了JVM之外,还需要一个与Java EE兼容的应用服务器,如 Glassfish JBoss 和其他人。

Java EE (formerly J2EE) is the enterprise edition of Java. With it, you make websites, Java Beans, and more powerful server applications. Besides the JVM, you need an application server Java EE-compatible, like Glassfish, JBoss, and others.