Primefaces Upload No Firing Listener Wildfly 16
I have an application. Information technology'southward a simple application and ane of the features is a file upload (just txt). So I used the file upload component of PrimeFaces, only it doesn't work. I accept tried many things, but I can't solve this trouble. I am running the application on WildFly 8.0 and I utilise Spring with JPA.
The dependencies (pom.xml)
There are more dependencies declared, but I think only these are used past PrimeFaces. If y'all need to view my entire pom.xml, let me know.
<dependency> <groupId>org.primefaces.themes</groupId> <artifactId>all-themes</artifactId> <version>i.0.ten</version> <telescopic>compile</scope> </dependency> <dependency> <groupId>org.primefaces</groupId> <artifactId>primefaces</artifactId> <version>iv.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> <version>7.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>eatables-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>i.3.ane</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.omnifaces</groupId> <artifactId>omnifaces</artifactId> <version>1.seven</version> <scope>compile</scope> </dependency> web.xml
Again, but the part relevant for primefaces.
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-case" xmlns=" http://xmlns.jcp.org/xml/ns/javaee/" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee/ http://xmlns.jcp.org/xml/ns/javaee/spider web-app_3_1.xsd" version="3.1"> <display-proper name>My App</display-name> <context-param> <param-proper noun>contextConfigLocation</param-proper noun> <param-value>classpath:spring/jump-context*.xml</param-value> </context-param> <context-param> <param-name>javax.faces.PROJECT_STAGE</param-name> <param-value>Development</param-value> </context-param> <context-param> <param-name>primefaces.THEME</param-proper name> <param-value>aristo</param-value> </context-param> <listener> <listener-class>org.springframework.spider web.context.ContextLoaderListener</listener-form> </listener> <listener> <listener-grade>org.springframework.web.context.request.RequestContextListener</listener-class> </listener> <filter> <filter-name>springSecurityFilterChain</filter-name> <filter-class>org.springframework.spider web.filter.DelegatingFilterProxy</filter-class> </filter> <filter-mapping> <filter-name>springSecurityFilterChain</filter-proper name> <url-pattern>/*</url-pattern> </filter-mapping> <listener> <listener-class>org.springframework.security.web.session.HttpSessionEventPublisher</listener-form> </listener> <security-constraint> <display-name>Protect XHTML Files from directly access </display-name> <web-resources-drove> <web-resource-name>XHTML</web-resource-name> <url-design>*.xhtml</url-design> </web-resource-drove> <auth-constraint /> </security-constraint> <filter> <filter-proper name>PrimeFaces FileUpload Filter</filter-proper noun> <filter-class>org.primefaces.webapp.filter.FileUploadFilter</filter-form> </filter> <filter-mapping> <filter-name>PrimeFaces FileUpload Filter</filter-name> <servlet-proper noun>Faces Servlet</servlet-proper noun> </filter-mapping> <session-config> <session-timeout>960</session-timeout> </session-config> <servlet> <servlet-name>Faces Servlet</servlet-proper noun> <servlet-form>javax.faces.webapp.FacesServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>Faces Servlet</servlet-name> <url-blueprint>*.jspa</url-pattern> </servlet-mapping> <error-folio> <exception-blazon>javax.faces.awarding.ViewExpiredException</exception-type> <location>/app/errors/viewExpired.jspa</location> </fault-page> <fault-page> <exception-type>java.lang.Exception</exception-type> <location>/app/errors/error.jspa</location> </fault-folio> <error-page> <mistake-code>404</fault-code> <location>/app/errors/notfound.jspa</location> </error-page> <welcome-file-list> <welcome-file>index.jsp</welcome-file> </welcome-file-list> </spider web-app> faces-config.xml (jump and omnifaces related).
<application> <el-resolver>org.springframework.web.jsf.el.SpringBeanFacesELResolver</el-resolver> </awarding> <mill> <exception-handler-factory>org.omnifaces.exceptionhandler.FullAjaxExceptionHandlerFactory</exception-handler-factory> </factory> <faces-config-extension> <facelets-processing> <file-extension>.xhtml</file-extension> <process-every bit>xhtml</procedure-equally> </facelets-processing> </faces-config-extension> XHTML File.
This is the file where I endeavour to make the upload.
<h:course id="uplFileForm" enctype="multipart/course-data"> <p:fileUpload id="uplFile" fileUploadListener="#{myManagedBean.save}" fashion="advanced" car="true" label="Select the file" uploadLabel="Upload" cancelLabel="Cancel" invalidSizeMessage="File is likewise big" invalidFileMessage="Format not supported" dragDropSupport="false" sizeLimit="614572800" allowTypes="/(\.|\/)(txt|TXT)$/" /> </h:form> My Managed Bean
Well, here I accept the method who receives the file and save it, however when I debug the application, the method salvage(FileUploadEvent) is never called. I think the problem is non hither, because, like I said, the method relieve(FileUploadEvent) is not chosen.
@ManagedBean @ViewScoped public grade MyManagedBean extends AbstractMB implements Serializable { public void save(FileUploadEvent event) { effort { String fileName = event.getFile().getFileName(); MyFileUpload myFile = new MyFileUpload(); byte[] content = event.getFile().getContents(); myFile.setFilename(event.getFile().getFileName()); myFile.setContent(conteudo); myFile.setChecksum(getHelperService().getCheckSum(content)); save(myFile); } catch (ServiceException ex) { logger.error("Error, ex); } } } The exception
ERROR [io.undertow.request] (default task-2) UT005023: Exception handling request to /myapp/app/admin/fileuploads/alphabetize.jspa: java.lang.NullPointerException at org.omnifaces.config.WebXml.findErrorPageLocation(WebXml.coffee:176) [omnifaces-1.7.jar:i.7] at org.omnifaces.exceptionhandler.FullAjaxExceptionHandler.findErrorPageLocation(FullAjaxExceptionHandler.java:270) [omnifaces-1.vii.jar:1.7] at org.omnifaces.exceptionhandler.FullAjaxExceptionHandler.handleAjaxException(FullAjaxExceptionHandler.java:200) [omnifaces-1.7.jar:1.seven] at org.omnifaces.exceptionhandler.FullAjaxExceptionHandler.handle(FullAjaxExceptionHandler.java:175) [omnifaces-i.seven.jar:1.7] at com.sun.faces.lifecycle.Stage.doPhase(Stage.java:119) [jsf-impl-2.2.five-jbossorg-3.jar:] at com.sun.faces.lifecycle.RestoreViewPhase.doPhase(RestoreViewPhase.java:121) [jsf-impl-2.2.5-jbossorg-three.jar:] at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.coffee:198) [jsf-impl-2.2.five-jbossorg-3.jar:] at javax.faces.webapp.FacesServlet.service(FacesServlet.java:646) [jboss-jsf-api_2.2_spec-2.2.5.jar:2.ii.5] at io.undertow.servlet.handlers.ServletHandler.handleRequest(ServletHandler.java:85) [undertow-servlet-1.0.0.Final.jar:1.0.0.Concluding] at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:130) [undertow-servlet-i.0.0.Final.jar:ane.0.0.Final] at org.primefaces.webapp.filter.FileUploadFilter.doFilter(FileUploadFilter.java:70) [primefaces-four.0.jar:iv.0] at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.java:56) [undertow-servlet-1.0.0.Terminal.jar:i.0.0.Concluding] at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.java:132) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:330) [spring-security-spider web-3.2.3.RELEASE.jar:three.2.3.RELEASE] at org.springframework.security.web.admission.intercept.FilterSecurityInterceptor.invoke(FilterSecurityInterceptor.java:118) [spring-security-spider web-3.2.three.RELEASE.jar:iii.ii.three.RELEASE] at org.springframework.security.web.access.intercept.FilterSecurityInterceptor.doFilter(FilterSecurityInterceptor.java:84) [leap-security-web-3.2.3.RELEASE.jar:3.ii.3.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [bound-security-web-3.2.3.RELEASE.jar:3.ii.3.RELEASE] at org.springframework.security.web.admission.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.coffee:113) [spring-security-spider web-3.2.3.RELEASE.jar:iii.2.3.RELEASE] at org.springframework.security.spider web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [spring-security-web-3.2.3.RELEASE.jar:3.ii.3.RELEASE] at org.springframework.security.web.session.SessionManagementFilter.doFilter(SessionManagementFilter.java:103) [spring-security-web-three.2.3.RELEASE.jar:3.2.3.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [spring-security-web-iii.2.3.RELEASE.jar:3.two.3.RELEASE] at org.springframework.security.web.hallmark.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:113) [spring-security-web-3.2.3.RELEASE.jar:iii.two.three.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.coffee:342) [jump-security-web-3.2.iii.RELEASE.jar:three.2.three.RELEASE] at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:154) [spring-security-web-3.2.3.RELEASE.jar:3.2.iii.RELEASE] at org.springframework.security.spider web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [bound-security-web-3.two.iii.RELEASE.jar:3.2.3.RELEASE] at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:45) [spring-security-spider web-3.two.3.RELEASE.jar:3.2.3.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [spring-security-web-three.2.three.RELEASE.jar:3.two.3.RELEASE] at org.springframework.security.spider web.authentication.www.BasicAuthenticationFilter.doFilter(BasicAuthenticationFilter.coffee:150) [jump-security-web-iii.ii.3.RELEASE.jar:three.2.3.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [spring-security-web-3.2.iii.RELEASE.jar:3.2.three.RELEASE] at org.springframework.security.spider web.hallmark.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:199) [jump-security-web-3.2.iii.RELEASE.jar:3.two.iii.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [jump-security-web-3.2.3.RELEASE.jar:3.ii.three.RELEASE] at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:110) [bound-security-web-3.2.3.RELEASE.jar:3.2.iii.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.coffee:342) [spring-security-spider web-3.ii.3.RELEASE.jar:three.2.3.RELEASE] at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:l) [leap-security-web-3.2.iii.RELEASE.jar:3.2.three.RELEASE] at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:108) [spring-spider web-four.0.three.RELEASE.jar:4.0.three.RELEASE] at org.springframework.security.spider web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [leap-security-spider web-three.2.3.RELEASE.jar:3.ii.3.RELEASE] at org.springframework.security.web.session.ConcurrentSessionFilter.doFilter(ConcurrentSessionFilter.java:125) [spring-security-web-iii.2.3.RELEASE.jar:3.2.three.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [spring-security-web-3.ii.iii.RELEASE.jar:iii.2.three.RELEASE] at org.springframework.security.web.context.SecurityContextPersistenceFilter.doFilter(SecurityContextPersistenceFilter.java:87) [leap-security-web-iii.2.3.RELEASE.jar:iii.2.3.RELEASE] at org.springframework.security.web.FilterChainProxy$VirtualFilterChain.doFilter(FilterChainProxy.java:342) [jump-security-spider web-3.two.3.RELEASE.jar:3.2.3.RELEASE] at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:192) [jump-security-spider web-3.2.3.RELEASE.jar:3.two.3.RELEASE] at org.springframework.security.spider web.FilterChainProxy.doFilter(FilterChainProxy.java:160) [spring-security-web-3.two.3.RELEASE.jar:3.ii.three.RELEASE] at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.coffee:344) [leap-web-iv.0.3.RELEASE.jar:iv.0.three.RELEASE] at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.coffee:261) [spring-web-4.0.3.RELEASE.jar:4.0.3.RELEASE] at io.undertow.servlet.core.ManagedFilter.doFilter(ManagedFilter.coffee:56) [undertow-servlet-1.0.0.Final.jar:1.0.0.Concluding] at io.undertow.servlet.handlers.FilterHandler$FilterChainImpl.doFilter(FilterHandler.coffee:132) [undertow-servlet-1.0.0.Final.jar:ane.0.0.Final] at io.undertow.servlet.handlers.FilterHandler.handleRequest(FilterHandler.coffee:85) [undertow-servlet-one.0.0.Terminal.jar:1.0.0.Final] at io.undertow.servlet.handlers.security.ServletSecurityRoleHandler.handleRequest(ServletSecurityRoleHandler.java:61) [undertow-servlet-1.0.0.Final.jar:ane.0.0.Final] at io.undertow.servlet.handlers.ServletDispatchingHandler.handleRequest(ServletDispatchingHandler.coffee:36) [undertow-servlet-1.0.0.Final.jar:1.0.0.Final] at org.wildfly.extension.undertow.security.SecurityContextAssociationHandler.handleRequest(SecurityContextAssociationHandler.java:78) at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.coffee:25) [undertow-cadre-i.0.0.Final.jar:1.0.0.Final] at io.undertow.servlet.handlers.security.SSLInformationAssociationHandler.handleRequest(SSLInformationAssociationHandler.java:113) [undertow-servlet-ane.0.0.Final.jar:i.0.0.Last] at io.undertow.security.handlers.AuthenticationCallHandler.handleRequest(AuthenticationCallHandler.coffee:52) [undertow-cadre-one.0.0.Final.jar:ane.0.0.Final] at io.undertow.security.handlers.AuthenticationConstraintHandler.handleRequest(AuthenticationConstraintHandler.java:51) [undertow-cadre-one.0.0.Terminal.jar:i.0.0.Final] at io.undertow.security.handlers.AbstractConfidentialityHandler.handleRequest(AbstractConfidentialityHandler.java:45) [undertow-core-ane.0.0.Final.jar:i.0.0.Final] at io.undertow.servlet.handlers.security.ServletConfidentialityConstraintHandler.handleRequest(ServletConfidentialityConstraintHandler.java:61) [undertow-servlet-1.0.0.Terminal.jar:1.0.0.Last] at io.undertow.servlet.handlers.security.ServletSecurityConstraintHandler.handleRequest(ServletSecurityConstraintHandler.java:56) [undertow-servlet-ane.0.0.Final.jar:1.0.0.Final] at io.undertow.servlet.handlers.security.CachedAuthenticatedSessionHandler.handleRequest(CachedAuthenticatedSessionHandler.java:70) [undertow-servlet-i.0.0.Final.jar:1.0.0.Concluding] at io.undertow.security.handlers.SecurityInitialHandler.handleRequest(SecurityInitialHandler.java:76) [undertow-core-one.0.0.Concluding.jar:1.0.0.Terminal] at io.undertow.server.handlers.PredicateHandler.handleRequest(PredicateHandler.java:25) [undertow-core-1.0.0.Final.jar:1.0.0.Final] at org.wildfly.extension.undertow.security.jacc.JACCContextIdHandler.handleRequest(JACCContextIdHandler.java:61) ... Wildfly 8.0.Terminal startup
09:51:38,482 INFO [org.jboss.modules] (main) JBoss Modules version ane.iii.0.Final 09:51:38,800 INFO [org.jboss.msc] (main) JBoss MSC version one.ii.0.Concluding 09:51:38,884 INFO [org.jboss.as] (MSC service thread 1-6) JBAS015899: WildFly eight.0.0.Final "WildFly" starting 09:51:39,951 INFO [org.jboss.every bit.server] (Controller Kicking Thread) JBAS015888: Creating http management service using socket-bounden (management-http) 09:51:39,969 INFO [org.xnio] (MSC service thread 1-9) XNIO version three.ii.0.Terminal 09:51:39,977 INFO [org.xnio.nio] (MSC service thread 1-9) XNIO NIO Implementation Version iii.2.0.Final 09:51:forty,004 INFO [org.jboss.equally.clustering.infinispan] (ServerService Thread Pool -- 33) JBAS010280: Activating Infinispan subsystem. 09:51:xl,010 INFO [org.jboss.as.security] (ServerService Thread Pool -- 46) JBAS013171: Activating Security Subsystem 09:51:forty,021 INFO [org.jboss.as.naming] (ServerService Thread Puddle -- 41) JBAS011800: Activating Naming Subsystem 09:51:twoscore,033 INFO [org.jboss.every bit.webservices] (ServerService Thread Pool -- 50) JBAS015537: Activating WebServices Extension 09:51:40,039 INFO [org.jboss.as.security] (MSC service thread 1-7) JBAS013170: Current PicketBox version=4.0.twenty.Final 09:51:40,040 INFO [org.jboss.as.jsf] (ServerService Thread Pool -- 39) JBAS012615: Activated the following JSF Implementations: [main] 09:51:40,062 INFO [org.wildfly.extension.undertow] (ServerService Thread Puddle -- 49) JBAS017502: Undertow 1.0.0.Final starting 09:51:40,063 INFO [org.wildfly.extension.undertow] (MSC service thread 1-13) JBAS017502: Undertow i.0.0.Concluding starting 09:51:xl,072 INFO [org.jboss.as.connector.logging] (MSC service thread 1-2) JBAS010408: Starting JCA Subsystem (IronJacamar 1.1.3.Final) 09:51:40,103 INFO [org.jboss.as.naming] (MSC service thread 1-xiv) JBAS011802: Starting Naming Service 09:51:forty,103 INFO [org.jboss.as.mail.extension] (MSC service thread ane-8) JBAS015400: Spring mail session [java:jboss/mail/Default] 09:51:40,127 INFO [org.jboss.as.connector.subsystems.datasources] (ServerService Thread Pool -- 28) JBAS010403: Deploying JDBC-compliant commuter grade org.h2.Driver (version 1.three) 09:51:40,131 INFO [org.jboss.every bit.connector.deployers.jdbc] (MSC service thread 1-sixteen) JBAS010417: Started Driver service with driver-name = h2 09:51:40,162 INFO [org.jboss.remoting] (MSC service thread one-9) JBoss Remoting version iv.0.0.Last 09:51:40,203 INFO [org.wildfly.extension.undertow] (ServerService Thread Puddle -- 49) JBAS017527: Creating file handler for path C:\Desenvolvimento\Servidores\wildfly-8.0.0.Final/welcome-content 09:51:forty,211 INFO [org.wildfly.extension.undertow] (MSC service thread one-viii) JBAS017525: Started server default-server. 09:51:twoscore,242 INFO [org.wildfly.extension.undertow] (MSC service thread 1-iii) JBAS017531: Host default-host starting 09:51:forty,285 INFO [org.wildfly.extension.undertow] (MSC service thread 1-11) JBAS017519: Undertow HTTP listener default listening on localhost/127.0.0.1:8080 09:51:40,446 INFO [org.jboss.as.server.deployment.scanner] (MSC service thread 1-ten) JBAS015012: Started FileSystemDeploymentService for directory C:\Desenvolvimento\Servidores\wildfly-8.0.0.Final\standalone\deployments 09:51:40,448 INFO [org.jboss.equally.server.deployment] (MSC service thread one-1) JBAS015876: Starting deployment of "ojdbc6.jar" (runtime-name: "ojdbc6.jar") 09:51:xl,448 INFO [org.jboss.as.server.deployment] (MSC service thread 1-12) JBAS015876: Starting deployment of "myApplication.state of war" (runtime-name: "myApplication.war") 09:51:40,461 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-xiii) JBAS010400: Bound data source [java:jboss/datasources/ExampleDS] 09:51:40,725 INFO [org.jboss.ws.common.management] (MSC service thread 1-11) JBWS022052: Starting JBoss Spider web Services - Stack CXF Server 4.2.3.Final 09:51:41,038 INFO [org.jboss.as.connector.deployers.jdbc] (MSC service thread 1-16) JBAS010403: Deploying JDBC-compliant driver class oracle.jdbc.OracleDriver (version xi.2) 09:51:41,049 INFO [org.jboss.every bit.connector.deployers.jdbc] (MSC service thread 1-13) JBAS010417: Started Driver service with driver-name = ojdbc6.jar 09:51:44,147 INFO [org.jboss.as.jpa] (MSC service thread i-2) JBAS011401: Read persistence.xml for myApplicationPU 09:51:44,574 INFO [org.jboss.as.connector.subsystems.datasources] (MSC service thread 1-three) JBAS010400: Bound information source [coffee:/datasource/myApplicationds] 09:51:44,576 INFO [org.jboss.as.jpa] (ServerService Thread Pool -- 52) JBAS011409: Starting Persistence Unit (phase 1 of ii) Service 'myApplication.war#myApplicationPU' 09:51:44,584 INFO [org.hide.jpa.internal.util.LogHelper] (ServerService Thread Puddle -- 52) HHH000204: Processing PersistenceUnitInfo [ name: myApplicationPU ...] 09:51:44,644 INFO [org.hibernate.Version] (ServerService Thread Pool -- 52) HHH000412: Hibernate Cadre {4.3.i.Final} 09:51:44,646 INFO [org.hibernate.cfg.Environment] (ServerService Thread Pool -- 52) HHH000206: hibernate.properties non plant 09:51:44,647 INFO [org.hide.cfg.Environment] (ServerService Thread Pool -- 52) HHH000021: Bytecode provider proper noun : javassist 09:51:45,108 INFO [org.jboss.weld.deployer] (MSC service thread 1-2) JBAS016002: Processing weld deployment myApplication.war 09:51:45,164 INFO [org.hide.validator.internal.util.Version] (MSC service thread 1-2) HV000001: Hide Validator five.0.3.Final 09:51:45,459 INFO [org.jboss.weld.deployer] (MSC service thread 1-8) JBAS016005: Starting Services for CDI deployment: myApplication.war 09:51:45,488 INFO [org.jboss.weld.Version] (MSC service thread 1-8) WELD-000900: 2.ane.ii (Final) 09:51:45,514 INFO [org.jboss.weld.deployer] (MSC service thread 1-15) JBAS016008: Starting weld service for deployment myApplication.war 09:51:45,642 INFO [org.jboss.as.jpa] (ServerService Thread Pool -- 52) JBAS011409: Starting Persistence Unit (phase 2 of 2) Service 'myApplication.war#myApplicationPU' 09:51:45,715 INFO [org.hibernate.annotations.common.Version] (ServerService Thread Pool -- 52) HCANN000001: Hibernate Eatables Annotations {iv.0.4.Concluding} 09:51:46,027 INFO [org.hide.dialect.Dialect] (ServerService Thread Pool -- 52) HHH000400: Using dialect: org.hibernate.dialect.Oracle10gDialect 09:51:46,208 INFO [org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory] (ServerService Thread Puddle -- 52) HHH000397: Using ASTQueryTranslatorFactory 09:51:46,983 WARN [org.jboss.weld.Event] (MSC service thread 1-3) WELD-000411: Observer method [BackedAnnotatedMethod] public org.omnifaces.VetoAnnotatedTypeExtension.processAnnotatedType(@Observes ProcessAnnotatedType<Object>) receives events for all annotated types. Consider restricting events using @WithAnnotations or a generic type with bounds. 09:51:49,592 INFO [stdout] (MSC service thread 1-1) 09:51:49,592 INFO config:200 - Inicializando Mojarra 2.ii.5-jbossorg-iii 20140128-1641 para o contexto '/myApplication' 09:51:53,725 INFO [stdout] (MSC service thread one-ane) 09:51:53,724 INFO config:1057 - Monitoring file:/C:/Desenvolvimento/Servidores/wildfly-8.0.0.Final/standalone/tmp/vfs/temp/tempfa5b46b5f1a836c/myApplication.war-d0b76188ed68b8f4/Spider web-INF/faces-config.xml for modifications 09:51:53,782 INFO [org.wildfly.extension.undertow] (MSC service thread i-1) JBAS017534: Registered spider web context: /myApplication 09:51:53,831 INFO [org.jboss.as.server] (ServerService Thread Puddle -- 29) JBAS018559: Deployed "ojdbc6.jar" (runtime-proper noun : "ojdbc6.jar") 09:51:53,832 INFO [org.jboss.as.server] (ServerService Thread Pool -- 29) JBAS018559: Deployed "myApplication.war" (runtime-name : "myApplication.war") 09:51:53,908 INFO [org.jboss.as] (Controller Kick Thread) JBAS015961: Http management interface listening on http://127.0.0.ane:9991/management 09:51:53,909 INFO [org.jboss.equally] (Controller Kick Thread) JBAS015951: Admin console listening on http://127.0.0.1:9991 09:51:53,909 INFO [org.jboss.as] (Controller Kick Thread) JBAS015874: WildFly eight.0.0.Final "WildFly" started in 15744ms - Started 442 of 501 services (98 services are lazy, passive or on-need) Screenshot
ledbetterthisees76.blogspot.com
Source: https://stackoverflow.com/questions/22837382/file-upload-with-primefaces-4-0-not-working
0 Response to "Primefaces Upload No Firing Listener Wildfly 16"
Post a Comment