我的网络项目中有Spring注入问题。我必须在JSF2 bean中使用。
展示我的作品:
SgbdServiceImpl.java (简称)
@Service
public class SgbdServiceImpl implements SgbdService {
@Override
public List<Sgbd> findAll() {
return null;
}
@Override
public Sgbd findOneByName(String nom) {
return null;
}
}
SgbdBean
@Component
@SessionScoped
@ManagedBean(name="sgbd")
public class SgbdBean {
@Autowired
SgbdService sgbdService;
public List<Sgbd> findAll(){
return sgbdService.findAll();
}
}
我将此配置放在文件中: web.xml
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/applicationContext.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<listener>
<listener-class>
org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
applicationContext.xml 中的Spring配置:
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-2.5.xsd">
<context:annotation-config />
<context:component-scan base-package="main.java.com.erdf.agir.services" />
</beans>
并且,在 faces-config.xml
中<?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_1.xsd"
version="2.1">
<application>
<el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver>
</application>
</faces-config>
我想从服务调用findAll()但我从sgbdService attribut获取所有时间nullPointerException(自动连接失败?)
我按照这个例子:http://rsuna.blogspot.fr/2013/05/how-to-integrate-jsf-20-with-spring-3.html
我错过了什么吗?
答案 0 :(得分:1)
你有上下文冲突;在同一个类定义中同时使用@Component
和@ManagedBean
将bean放在两个上下文中:JSF和Spring。现在让我们确定@Autowired
在JSF上下文中不起作用。
您可以摆脱基于弹簧的注释,并使用以JSF为中心的设置。
将带给您什么@SessionScoped
@ManagedBean(name="sgbd")
public class SgbdBean {
@ManagedProperty(value="#{sgbdServiceImpl}")
SgbdService sgbdService;
public List<Sgbd> findAll(){
return sgbdService.findAll();
}
}
您可以坚持使用严格以弹簧为中心的方法
@Component
public class SgbdBean {
@Autowired
SgbdService sgbdService;
public List<Sgbd> findAll(){
return sgbdService.findAll();
}
}
答案 1 :(得分:0)
我遇到的事情
1)最好提及带注释的服务名称 - @Service(“sgbdService”)
2)而不是@ManagedBean,最好使用@Qualifier注释 - @Qualifier(“sgbdBean”)
3)将<context:sping-configured/>
条目添加到applicationContext.xml文件
4)尝试使用顶级组件扫描条目
<context:component-scan base-package="main.java.com.erdf" />