我在eclipse中有一个工作的动态Web项目(JAX-RS),它从数据库中获取记录并以json格式返回数据。
现在,我正试图将这个项目分成两部分。
1. CompDB //Project stores database handlers classes
src
database
ComponentContext.java
ComponentViewable.java //Interface
database.uat
ComponentUATView.java //Implements ComponentViewable
META-INF
persistance.xml
WebContent
WEB-INF
beans.xml
web.xml
创建一个jar文件并复制到项目2的WEB-INF / lib中,如下所示
2. CompRS //Project stores JAX-RS client classes
src
compreport
ComponentData.java
META-INF
persistance.xml
WebContent
WEB-INF
lib
CompDB.jar
beans.xml
web.xml
当我在glssfish 3.1上运行CompRS时,得到以下错误
INFO: WEB0671: Loading application [CompRS] at [/CompRS] SEVERE: Exception while loading the app
INFO: file:/C:/Program Files/glassfish-3.1.2.2/glassfish/domains/domain1/eclipseApps/CompRS/WEB- INF/lib/CompDB.jar_ci logout successful
SEVERE: Exception while loading the app : WELD-001408 Unsatisfied dependencies for type
[ComponentViewable] with qualifiers [@ComponentContext] at injection point [[field] @Inject @ComponentContext compreport.ComponentData.componentdata]
这是代码
ComponentData.java
@Path("component")
@RequestScoped
public class ComponentData {
@Inject @ComponentContext ComponentViewable componentdata;
@GET
@Path("latest")
@Produces("application/json")
....
}
ComponentContext.java
@Target({TYPE,METHOD,PARAMETER,FIELD})
@Retention(RUNTIME) @Documented @Qualifier
public @interface ComponentContext{}
我很擅长创建多个罐子并将它们集成在一起。如果这不是正确的方法,请指导我实现同样的目标。
答案 0 :(得分:1)
看起来CompDB现在是一个你从其他网络应用程序引用的jar。 jar中的beans.xml文件必须位于META-INF中。