In J2EE application, modules are packaged as EAR, JAR and WAR based on their functionality

JAR: EJB modules which contain enterprise java beans (class files) and EJB deployment descriptor are packed as JAR files with .jar extenstion

WAR: Web modules which contain 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.

最新文章

  1. ntfs-3g
  2. php地址赋值值和传值赋值
  3. centos7 gitlab
  4. UnityVS 2013的使用
  5. 【Linux】Mutex互斥量线程同步的例子
  6. hdu 1757 A Simple Math Problem (矩阵快速幂,简单)
  7. Struts2 + Spring + Hibernate 通用 Service 和 DAO
  8. CSS定位(postion)和移动(float)
  9. An endpoint configuration section for contract "serviceReferenc.service" could not be loaded
  10. 【POJ】1204 Word Puzzles
  11. EffectiveC#5--始终提供ToString()
  12. ThinkPHP导入Excel文件(使用PHPExcel)
  13. Android消息循环分析
  14. How to Use NSLog to Debug CGRect and CGPoint
  15. CentOS下载及版本选择-CentOS LiveCD、LiveDVD和BinDVD区别
  16. javaScript设计模式之面向对象编程(object-oriented programming,OOP)(一)
  17. python2.7安装
  18. Handy Collaborator :用于挖掘out-of-band类漏洞的Burp插件介绍
  19. js有哪些变态的语法?
  20. MySQL Flashback 工具介绍

热门文章

  1. ? 初识Webx 2
  2. Android开发——为移动的Paint元素指定图片的方法
  3. Eclipse Tomcat Project报错:HTTP Status 404错误
  4. 一道lambda表达式题目
  5. 【HDU】3068 最长回文
  6. 【CF558E】 A Simple Task (权值线段树)
  7. jqgrid 翻页记录选中行
  8. 《Linux内核原理与设计》第十一周作业 ShellShock攻击实验
  9. php中使用static方法
  10. python设计模式之单例模式(一)