[SPRING] JSF2 : 봄부터 managedbean에 서비스 객체를 삽입 하시겠습니까?
SPRINGJSF2 : 봄부터 managedbean에 서비스 객체를 삽입 하시겠습니까?
나는 이것을 테스트하여 서비스 객체를 @ManagedBean에 주입하려고 시도했지만 nullpointerexception으로 실패하여 userService가 null입니다.
나는 현재 Tomcat 7, JSF 2를 사용하고 있으며 여기에 일부 pom.xml이있다.
<properties>
<java-version>1.6</java-version>
<org.springframework-version>3.0.3.RELEASE</org.springframework-version>
<org.hibernate-version>3.6.0.Final</org.hibernate-version>
....
</properties>
다음은 예외 추적입니다.
javax.faces.el.EvaluationException: java.lang.NullPointerException
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:315)
at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:775)
at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1267)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:306)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:240)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:108)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:558)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:379)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:243)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:259)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:281)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:636)
Caused by: java.lang.NullPointerException
at org.albertkam.ui.LoginBean.login(LoginBean.java:38)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.apache.el.parser.AstValue.invoke(AstValue.java:262)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278)
at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:98)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 23 more
내 ManagedBean은 다음과 같습니다.
@ManagedBean
@RequestScoped
public class LoginBean {
private MstUser entityMstUser;
@Autowired
private UserService userService;
@PostConstruct
private void init() {
this.entityMstUser = new MstUser();
}
그리고 여기 내 서비스 콩이 ..
@Service
public class UserService {
@Autowired
private UserDAO userDao;
public void login(MstUser entityMstUser) {
그리고 여기에 내 applicationContext.xml이 있습니다.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
default-autowire="byName">
<context:component-scan base-package="org.albertkam" />
<context:annotation-config />
<tx:annotation-driven />
</beans>
그리고 내 web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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-app_2_5.xsd">
<display-name>albert simpleWebapp</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
/WEB-INF/datasourceContext.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>facesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>facesServlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
</web-app>
그리고 내 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_0.xsd"
version="2.0">
<application>
<locale-config>
<default-locale>in</default-locale>
<supported-locale>en</supported-locale>
</locale-config>
<resource-bundle>
<base-name>org.albertkam.common.messages</base-name>
<var>msgs</var>
</resource-bundle>
<resource-bundle>
<base-name>org.albertkam.common.errors</base-name>
<var>errs</var>
</resource-bundle>
<!-- <message-bundle>id.co.sofcograha.override_messages</message-bundle> -->
</application>
<factory>
<exception-handler-factory>org.albertkam.common.BusinessExceptionHandlerFactory</exception-handler-factory>
</factory>
</faces-config>
@ManagedBean에 스프링 관리 빈을 주입하는 것이 가능한지 궁금합니다.
이 경험을 공유하십시오 ..
고맙습니다 !
*********** 새로운 실험 결과를 추가했습니다 ***************
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<listener>
<listener-class>org.jboss.weld.environment.servlet.Listener</listener-class>
</listener>Hello,
나는 이것을 테스트하여 서비스 객체를 @ManagedBean에 주입하려고 시도했지만 nullpointerexception으로 실패하여 userService가 null입니다.
나는 현재 Tomcat 7, JSF 2를 사용하고 있으며 여기에 일부 pom.xml이있다.
<properties>
<java-version>1.6</java-version>
<org.springframework-version>3.0.3.RELEASE</org.springframework-version>
<org.hibernate-version>3.6.0.Final</org.hibernate-version>
....
</properties>
다음은 예외 추적입니다.
javax.faces.el.EvaluationException: java.lang.NullPointerException
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:102)
at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
at javax.faces.component.UICommand.broadcast(UICommand.java:315)
at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:775)
at javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:1267)
at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:82)
at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:101)
at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:118)
at javax.faces.webapp.FacesServlet.service(FacesServlet.java:312)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:306)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:240)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:161)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:164)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:108)
at org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:558)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:379)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:243)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:259)
at org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:281)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
at java.lang.Thread.run(Thread.java:636)
Caused by: java.lang.NullPointerException
at org.albertkam.ui.LoginBean.login(LoginBean.java:38)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.apache.el.parser.AstValue.invoke(AstValue.java:262)
at org.apache.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:278)
at com.sun.faces.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:98)
at javax.faces.component.MethodBindingMethodExpressionAdapter.invoke(MethodBindingMethodExpressionAdapter.java:88)
... 23 more
내 ManagedBean은 다음과 같습니다.
@ManagedBean
@RequestScoped
public class LoginBean {
private MstUser entityMstUser;
@Autowired
private UserService userService;
@PostConstruct
private void init() {
this.entityMstUser = new MstUser();
}
그리고 여기 내 서비스 콩이 ..
@Service
public class UserService {
@Autowired
private UserDAO userDao;
public void login(MstUser entityMstUser) {
그리고 여기에 내 applicationContext.xml이 있습니다.
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"
default-autowire="byName">
<context:component-scan base-package="org.albertkam" />
<context:annotation-config />
<tx:annotation-driven />
</beans>
그리고 내 web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" 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-app_2_5.xsd">
<display-name>albert simpleWebapp</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/applicationContext.xml
/WEB-INF/datasourceContext.xml
</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>facesServlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>facesServlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
</web-app>
그리고 내 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_0.xsd"
version="2.0">
<application>
<locale-config>
<default-locale>in</default-locale>
<supported-locale>en</supported-locale>
</locale-config>
<resource-bundle>
<base-name>org.albertkam.common.messages</base-name>
<var>msgs</var>
</resource-bundle>
<resource-bundle>
<base-name>org.albertkam.common.errors</base-name>
<var>errs</var>
</resource-bundle>
<!-- <message-bundle>id.co.sofcograha.override_messages</message-bundle> -->
</application>
<factory>
<exception-handler-factory>org.albertkam.common.BusinessExceptionHandlerFactory</exception-handler-factory>
</factory>
</faces-config>
@ManagedBean에 스프링 관리 빈을 주입하는 것이 가능한지 궁금합니다.
이 경험을 공유하십시오 ..
고맙습니다 !
*********** 새로운 실험 결과를 추가했습니다 ***************
지금은 @Autowired를 대체하기 위해 @ManagedBean과 @Inject를 대체하기 위해 @Named를 사용해 보았습니다.하지만 여전히 효과가 없었습니다.
수정 된 관리 빈은 다음과 같습니다.
@Named("userBean")
@RequestScoped
public class LoginBean {
private MstUser entityMstUser;
@Inject
private UserService userService;
@PostConstruct
private void init() {
this.entityMstUser = new MstUser();
}
이것은 serviceService가 Spring에 의해 관리 되더라도 서비스 객체가 주입 되었습니까? 어떻게 가능할까요?
내가 길을 따라 추가하는 몇 가지 추가 사항이 있습니다.
나는 이것을 web.xml에 추가했다.
<listener>
<listener-class>org.springframework.web.context.request.RequestContextListener</listener-class>
</listener>
<listener>
<listener-class>org.jboss.weld.environment.servlet.Listener</listener-class>
</listener>
또한 빈 WEB-INF / beans.xml을 추가했습니다.
그리고 faces-config.xml 안에 있습니다. org.springframework.web.jsf.el.SpringBeanFacesELResolver
저는 ViewScoped와 함께 나쁜 경험을했기 때문에 여기에 @Named 사용에 대해 약간 염려했습니다. @ManagedBean을 봄 프레임 워크에 의해 서비스 객체로 주입 할 수있을 때 나는 훨씬 더 안전하게 느낄 것입니다.
나는 당신이 보통 ManagedBean을 비즈니스 서비스 객체와 연결하기 위해 무엇을하는지 궁금합니다. CDI, 순수한 Spring 또는 이들의 조합을 사용합니까?
해결법
-
==============================
1.faces-config.xml에서 변수 해결자가 누락되었습니다.
faces-config.xml에서 변수 해결자가 누락되었습니다.
<application> <variable-resolver> org.springframework.web.jsf.DelegatingVariableResolver </variable-resolver> </application>
web.xml의 RequestContextListener 리스너가 누락되었습니다.
<listener> <listener-class> org.springframework.web.context.request.RequestContextListener </listener-class> </listener>
-
==============================
2.애플리케이션 컨텍스트 xml에서 "UserService"에 대한 빈을 정의하고,
애플리케이션 컨텍스트 xml에서 "UserService"에 대한 빈을 정의하고,
<bean id="userService" class="org.albertkam.yourclassname"/>
from https://stackoverflow.com/questions/4724412/jsf2-inject-service-objects-to-managedbean-from-spring by cc-by-sa and MIT license
'SPRING' 카테고리의 다른 글
[SPRING] 최대 절전 모드 필터 또는 다른 방법을 사용하여 스프링 데이터 JPA에서 행 수준의 보안을 구현하는 방법? (0) | 2019.04.07 |
---|---|
[SPRING] spring sockjs websocket 서버 구현을 위해 출력 버퍼를 증가시키는 방법 (0) | 2019.04.07 |
[SPRING] @WebMvcTest를 사용하고 사용자 정의 필터를 어떻게 추가 할 수 있습니까? (0) | 2019.04.07 |
[SPRING] 봄 최대 절전 모드 트랜잭션 로깅 (0) | 2019.04.07 |
[SPRING] Eclipse에서 비어있는 웹 앱 라이브러리 - "jars"가 없습니다. (0) | 2019.04.07 |