我使用Primefaces(JSF实现)来创建我的Web应用程序。我在一个应用程序中保留了控制器(JSF bean)+服务,在另一个应用程序中保留了契约(Spring JDBC)。我手动生成了jar,我在Web应用程序的lib文件夹中保存了Contracts-jar和Controller + Services-jar。在faces-config中我写过。
<?xml version="1.0" encoding="UTF-8"?>
<faces-config
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd"
version="2.0">
<!-- JSF and Spring are integrated -->
<application>
<el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
</application>
</faces-config>
在启动期间,应用程序无法从外部jar中找到控制器(JSF托管bean)。任何帮助将受到高度赞赏。