【发布时间】:2016-02-16 08:20:42
【问题描述】:
有什么区别
<dependency>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<type>ejb</type>
</dependency>
和
<dependency>
<groupId>groupId</groupId>
<artifactId>artifactId</artifactId>
<type>jar</type>
</dependency>
【问题讨论】:
-
ejb类型由maven-ejb-plugin 生成,其目的是这是一个与 EE 应用程序相关使用的 EJB。 -
@khmarbaise:如果我使用 jar 怎么办?这对于 EE 应用程序难道不可行吗?