s****y 发帖数: 503 | 1 J2EE应用能打包成war文件和ear文件。
这两个文件有什么区别?什么时候用war?什么时候用ear? |
g*****g 发帖数: 34805 | 2 war是web 应用,ear是j2ee应用。区别在于有没有ejb。
【在 s****y 的大作中提到】 : J2EE应用能打包成war文件和ear文件。 : 这两个文件有什么区别?什么时候用war?什么时候用ear?
|
s*******1 发帖数: 92 | 3 stachoverflow上就有答案:
In J2EE application modules are packaged as EAR, JAR and WAR based on their
functionality
JAR: EJB modules which contains enterprise java beans class files and EJB
deployment descriptor are packed as JAR files with .jar extenstion
WAR: Web modules which contains Servlet class files,JSP FIles,supporting
files, GIF and HTML files are packaged as JAR file with .war (web archive)
extension
EAR: All above files (.jar and .war) are packaged as JAR file with .ear (
enterprise archive) extension and deployed into Application Server.
【在 s****y 的大作中提到】 : J2EE应用能打包成war文件和ear文件。 : 这两个文件有什么区别?什么时候用war?什么时候用ear?
|
l**********n 发帖数: 8443 | 4 These days you don't need EJB.
【在 s****y 的大作中提到】 : J2EE应用能打包成war文件和ear文件。 : 这两个文件有什么区别?什么时候用war?什么时候用ear?
|
r***y 发帖数: 4379 | 5 web container vs javaee container |