Open Tosken1337 opened 6 years ago
Hi, where are you using the war deployment? tomcat?
I think you should open an issue on JoinFaces project and provide stacktrace, steps to reproduce and a sample project so they will be able to help you.
Yes Tomcat. The AdminFilter will be initialized by the servlet container due to the @WebFilter annotation and uses inject to wire some beans. But these beans cannot be wired because the AdminFilter is not instantiated by Spring i think.
So, it is JoinFaces that does this integration with Spring, CDI and JSF. Not something we can fix in this project, I think.
I created an issue https://github.com/joinfaces/joinfaces/issues/588
Is it possible to configure AdminFilter
and LogoutServlet
at web-fragment.xml
instead of using @WebFilter and @WebServlet annotations?
Sure, we can do that if it's causing problems in SpringBoot integration. Can you create a separated issue?
Sure, we can do that if it's causing problems in SpringBoot integration. Can you create a separated issue?
Anyway, it will not solve the problem. Tomcat will try to create AdminFilter
and LogoutServlet
when Tomcat is not embedded.
If you run Tomcat inside full java ee server, it will work because java ee server has DI capability. If you run embedded with spring boot, it work because spring has DI capability too. Single Tomcat does not have DI capability.
But in admin-starter-tomcat we add DI capability by adding CDI implementation and configuring BeanManager in META-INF/context.xml and weld in web.xml, that doesn't help in this case also?
But in admin-starter-tomcat we add DI capability by adding CDI implementation and configuring BeanManager in META-INF/context.xml and weld in web.xml, that doesn't help in this case also?
It works ok because Weld is full CDI implementation, but Spring Boot is not full CDI implementation.
Running Admin Template with Spring Boot and embedded
Tomcat works ok too because JoinFaces autoconfiguration.
However, usecase described in this issue is about running Admin Template with Spring Boot inside
Tomcat. Here, Tomcat tries to create AdminFilter
because @WebFilter annotation and Spring Boot can not help. Spring Boot can create another instance of AdminFilter
, but it will be the second one.
If we remove @WebFilter annotation to avoid this situation, JoinFaces/Spring Boot can handle it, but it will break Weld usecase probably.
I see, It is more a springboot limitation than an AdminFaces issue. Can I close this issue or we can try something else?
I see, It is more a springboot limitation than an AdminFaces issue. Can I close this issue or we can try something else?
Admin Template uses CDI injection in Servlet and Filter. Spring handle this only if it creates them. Unfortunately, this issue is not the case.
HI, I am facing the same issue. Getting NPE on AdminFilter when running on Tomcat server. Could anyone help?
java.lang.NullPointerException: null
at com.github.adminfaces.template.session.AdminFilter.init(AdminFilter.java:53) ~[admin-template-1.0.0-RC20.jar:na]
at org.apache.catalina.core.ApplicationFilterConfig.initFilter(ApplicationFilterConfig.java:270) ~[catalina.jar:9.0.13]
at org.apache.catalina.core.ApplicationFilterConfig.getFilter(ApplicationFilterConfig.java:251) ~[catalina.jar:9.0.13]
at org.apache.catalina.core.ApplicationFilterConfig.
Hi, have you tried with admin-starter-tomcat?
admin-starter-tomcat works, but it is not using spring boot.
My application is spring boot application with joinfaces and adminfaces.
thanks it works fine when i give the bean manager in context.xml
That's is quite interesting! have you noticed any other side effect?
@persapiens anything else we should take into account? perhaps we should include context.xml in admin-starter-springboot as well, WDYT?
thanks it works fine when i give the bean manager in context.xml
Hello,
Can you explain how did you do?
Thanks.
I think @DhannyaP did something like this: https://github.com/adminfaces/admin-template/issues/141#issuecomment-442879988
I think @DhannyaP did something like this: #141 (comment)
Added the three things u told me, but giving the following error:
Caused by: java.lang.IllegalStateException: No WebApplicationContext found: no ContextLoaderListener registered? at org.springframework.web.jsf.FacesContextUtils.getRequiredWebApplicationContext(FacesContextUtils.java:83) at org.springframework.web.jsf.el.SpringBeanFacesELResolver.getWebApplicationContext(SpringBeanFacesELResolver.java:151) at org.springframework.web.jsf.el.SpringBeanFacesELResolver.getValue(SpringBeanFacesELResolver.java:78) at com.sun.faces.el.DemuxCompositeELResolver._getValue(DemuxCompositeELResolver.java:180) at com.sun.faces.el.DemuxCompositeELResolver.getValue(DemuxCompositeELResolver.java:208) at org.apache.el.parser.AstIdentifier.getValue(AstIdentifier.java:94) at org.apache.el.parser.AstValue.getValue(AstValue.java:137) at org.apache.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:190) at org.jboss.weld.el.WeldValueExpression.getValue(WeldValueExpression.java:50) at com.sun.faces.facelets.el.TagValueExpression.getValue(TagValueExpression.java:115) at com.sun.faces.facelets.tag.TagAttributeImpl.getObject(TagAttributeImpl.java:358) at com.sun.faces.facelets.tag.TagAttributeImpl.getValue(TagAttributeImpl.java:324) at com.sun.faces.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:167) at com.sun.faces.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:94) at com.sun.faces.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:88) at com.sun.faces.facelets.impl.DefaultFacelet.apply(DefaultFacelet.java:162) at com.sun.faces.application.view.FaceletViewHandlingStrategy.buildView(FaceletViewHandlingStrategy.java:381) at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:102) at com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:223) at javax.faces.webapp.FacesServlet.service(FacesServlet.java:671) ... 26 more
Can you share your project?
Hi @rmpestano did you check it?
Thanks.
Hi, i am using the joinfaces adminfaces-starter dependency for my project. When running as spring boot jar with embedded tomcat everything works fine.
When using war deployment i am facing a NullPointerException in the AdminFilter because the AdminConfig could not be injected.
Any idea?