我意识到它字面上翻译为Java企业版。但我想问的是,这到底意味着什么?当公司要求有Java EE经验时,他们真正要求的是什么?有ejb经验吗?有使用Java web应用程序的经验?
我怀疑这对不同的人意味着不同的东西,这个定义是主观的。
我意识到它字面上翻译为Java企业版。但我想问的是,这到底意味着什么?当公司要求有Java EE经验时,他们真正要求的是什么?有ejb经验吗?有使用Java web应用程序的经验?
我怀疑这对不同的人意味着不同的东西,这个定义是主观的。
当前回答
J2EE traditionally referred to products and standards released by Sun. For example if you were developing a standard J2EE web application, you would be using EJBs, Java Server Faces, and running in an application server that supports the J2EE standard. However since there is such a huge open source plethora of libraries and products that do the same jobs as well as (and many will argue better) then these Sun offerings, the day to day meaning of J2EE has migrated into referring to these as well (For instance a Spring/Tomcat/Hibernate solution) in many minds.
在我看来,这是一本讨论J2EE“开源”方法的好书 http://www.theserverside.com/tt/articles/article.tss?l=J2EEWithoutEJB_BookReview
其他回答
是的,有EJB、Web应用程序(servlet和JSP)、事务、Web服务、管理和应用服务器的经验。
它还意味着使用“企业级”应用程序的经验,而不是桌面应用程序。
在许多情况下,企业应用程序需要连接到许多遗留系统,它们不仅仅是“web页面”,通过java“版本”上可用的特性,这种连接可以解决。
Java环境有两个版本,J2EE和Se。SE是标准版,其中包括编写单用户应用程序所需的所有基本类。而企业版则是为多层企业应用程序或可能的分布式应用程序设置的。如果您使用的是应用服务器,比如tomcat或websphere,那么您会希望使用带有额外类的J2EE来支持n层。
Java EE是用于开发和部署企业应用程序的规范的集合。
一般来说,企业应用程序是指托管在服务器上的软件,这些服务器提供支持企业的应用程序。
规范(由Sun定义)描述了服务、应用程序编程接口(api)和协议。
组成Java EE的13个核心技术是:
JDBC JNDI ejb RMI JSP Java servlet XML JMS Java IDL JTS JTA JavaMail 于JAF
Java EE产品提供者通常是应用程序服务器、web服务器或数据库系统供应商,他们提供实现规范中定义的接口的类。这些供应商在Java EE规范的实现上相互竞争。
当一个公司需要Java EE经验时,他们真正要求的是使用组成Java EE的技术的经验。通常,公司只使用Java EE技术的一个子集。
我想说J2EE经验=对一些J2EE技术有深入的经验,对大多数J2EE技术有一般的知识,对企业软件有一般的经验。
J2EE traditionally referred to products and standards released by Sun. For example if you were developing a standard J2EE web application, you would be using EJBs, Java Server Faces, and running in an application server that supports the J2EE standard. However since there is such a huge open source plethora of libraries and products that do the same jobs as well as (and many will argue better) then these Sun offerings, the day to day meaning of J2EE has migrated into referring to these as well (For instance a Spring/Tomcat/Hibernate solution) in many minds.
在我看来,这是一本讨论J2EE“开源”方法的好书 http://www.theserverside.com/tt/articles/article.tss?l=J2EEWithoutEJB_BookReview