You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by THAN_HVFC <th...@yahoo.com.INVALID> on 2017/02/13 16:24:42 UTC

Struts2 JQuery plugin failed on Strut2 + Tiles + Hibernate project

Hi all!
I am new to Struts2.  I downloaded Strust-2.5.8-all which bundled with Tiles.  I created my web application with Strust-2.5.8 and Hibernate-5.1.  I deployed on Wildfly10 and the app ran fine.  
Now I decide to add JQuery to my project.  So I downloaded struts2-jquery-plugin-4.0.2 jar and put it inside my project lib folder and deployed on Wildfly10.  I got the error below.   As you can see the JQuery plugin breaks the Struts2 web app.  Please help!

16:14:15,945 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:1079)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.start(UndertowDeploymentInfoService.java:284)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)        at java.lang.Thread.run(Thread.java:745)Caused by: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)        at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:363)        at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:351)        at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:93)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:801)        ... 6 more


 Note:  If I take out the struts2-jquery-plugin-4.0.2 jar, the project works fine again without JQuery.  

My web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Struts Blank</display-name>

 <listener> <listener-class> org.apache.struts2.tiles.StrutsTilesListener </listener-class> </listener>  <context-param> <param-name>tilesDefinitions</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param>
    <filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter>      <filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>

    <welcome-file-list>        <welcome-file>index.jsp</welcome-file>    </welcome-file-list>
  </web-app>Hi all!
I am new to Struts2.  I downloaded Strust-2.5.8-all which bundled with Tiles.  I created my web application with Strust-2.5.8 and Hibernate-5.1.  I deployed on Wildfly10 and the app ran fine.  
Now I decide to add JQuery to my project.  So I downloaded struts2-jquery-plugin-4.0.2 jar and put it inside my project lib folder and deployed on Wildfly10.  I got the error below.   As you can see the JQuery plugin breaks the Struts2 web app.  Please help!

16:14:15,945 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:1079)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.start(UndertowDeploymentInfoService.java:284)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)        at java.lang.Thread.run(Thread.java:745)Caused by: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)        at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:363)        at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:351)        at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:93)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:801)        ... 6 more


 Note:  If I take out the struts2-jquery-plugin-4.0.2 jar, the project works fine again without JQuery.  

My web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Struts Blank</display-name>

 <listener> <listener-class> org.apache.struts2.tiles.StrutsTilesListener </listener-class> </listener>  <context-param> <param-name>tilesDefinitions</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param>
    <filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter>      <filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>

    <welcome-file-list>        <welcome-file>index.jsp</welcome-file>    </welcome-file-list>
  </web-app>Hi all!
I am new to Struts2.  I downloaded Strust-2.5.8-all which bundled with Tiles.  I created my web application with Strust-2.5.8 and Hibernate-5.1.  I deployed on Wildfly10 and the app ran fine.  
Now I decide to add JQuery to my project.  So I downloaded struts2-jquery-plugin-4.0.2 jar and put it inside my project lib folder and deployed on Wildfly10.  I got the error below.   As you can see the JQuery plugin breaks the Struts2 web app.  Please help!

16:14:15,945 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:1079)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.start(UndertowDeploymentInfoService.java:284)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)        at java.lang.Thread.run(Thread.java:745)Caused by: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)        at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:363)        at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:351)        at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:93)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:801)        ... 6 more


 Note:  If I take out the struts2-jquery-plugin-4.0.2 jar, the project works fine again without JQuery.  

My web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Struts Blank</display-name>

 <listener> <listener-class> org.apache.struts2.tiles.StrutsTilesListener </listener-class> </listener>  <context-param> <param-name>tilesDefinitions</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param>
    <filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter>      <filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>

    <welcome-file-list>        <welcome-file>index.jsp</welcome-file>    </welcome-file-list>
  </web-app>Hi all!
I am new to Struts2.  I downloaded Strust-2.5.8-all which bundled with Tiles.  I created my web application with Strust-2.5.8 and Hibernate-5.1.  I deployed on Wildfly10 and the app ran fine.  
Now I decide to add JQuery to my project.  So I downloaded struts2-jquery-plugin-4.0.2 jar and put it inside my project lib folder and deployed on Wildfly10.  I got the error below.   As you can see the JQuery plugin breaks the Struts2 web app.  Please help!

16:14:15,945 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:1079)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.start(UndertowDeploymentInfoService.java:284)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)        at java.lang.Thread.run(Thread.java:745)Caused by: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)        at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:363)        at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:351)        at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:93)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:801)        ... 6 more


 Note:  If I take out the struts2-jquery-plugin-4.0.2 jar, the project works fine again without JQuery.  

My web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Struts Blank</display-name>

 <listener> <listener-class> org.apache.struts2.tiles.StrutsTilesListener </listener-class> </listener>  <context-param> <param-name>tilesDefinitions</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param>
    <filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter>      <filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>

    <welcome-file-list>        <welcome-file>index.jsp</welcome-file>    </welcome-file-list>
  </web-app>Hi all!
I am new to Struts2.  I downloaded Strust-2.5.8-all which bundled with Tiles.  I created my web application with Strust-2.5.8 and Hibernate-5.1.  I deployed on Wildfly10 and the app ran fine.  
Now I decide to add JQuery to my project.  So I downloaded struts2-jquery-plugin-4.0.2 jar and put it inside my project lib folder and deployed on Wildfly10.  I got the error below.   As you can see the JQuery plugin breaks the Struts2 web app.  Please help!

16:14:15,945 ERROR [org.jboss.msc.service.fail] (MSC service thread 1-1) MSC000001: Failed to start service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: org.jboss.msc.service.StartException in service jboss.undertow.deployment.default-server.default-host./struts.UndertowDeploymentInfoService: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:1079)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.start(UndertowDeploymentInfoService.java:284)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.startService(ServiceControllerImpl.java:1948)        at org.jboss.msc.service.ServiceControllerImpl$StartTask.run(ServiceControllerImpl.java:1881)        at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)        at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)        at java.lang.Thread.run(Thread.java:745)Caused by: java.lang.ClassNotFoundException: org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter from [Module "deployment.struts.war:main" from Service Module Loader]        at org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:198)        at org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:363)        at org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:351)        at org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:93)        at org.wildfly.extension.undertow.deployment.UndertowDeploymentInfoService.createServletConfig(UndertowDeploymentInfoService.java:801)        ... 6 more


 Note:  If I take out the struts2-jquery-plugin-4.0.2 jar, the project works fine again without JQuery.  

My web.xml
<?xml version="1.0" encoding="UTF-8"?><web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>Struts Blank</display-name>

 <listener> <listener-class> org.apache.struts2.tiles.StrutsTilesListener </listener-class> </listener>  <context-param> <param-name>tilesDefinitions</param-name> <param-value>/WEB-INF/tiles.xml</param-value> </context-param>
    <filter>        <filter-name>struts2</filter-name>        <filter-class>org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter</filter-class>    </filter>      <filter-mapping>        <filter-name>struts2</filter-name>        <url-pattern>/*</url-pattern>    </filter-mapping>

    <welcome-file-list>        <welcome-file>index.jsp</welcome-file>    </welcome-file-list>
  </web-app>

Re: Struts2 JQuery plugin failed on Strut2 + Tiles + Hibernate project

Posted by Dave Newton <da...@gmail.com>.
On Mon, Feb 13, 2017 at 11:24 AM, THAN_HVFC <th...@yahoo.com.invalid>
wrote:

> org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
>



   - org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter


-- 
e: davelnewton@gmail.com
m: 908-380-8699
s: davelnewton_skype
t: @dave_newton <https://twitter.com/dave_newton>
b: Bucky Bits <http://buckybits.blogspot.com/>
g: davelnewton <https://github.com/davelnewton>
so: Dave Newton <http://stackoverflow.com/users/438992/dave-newton>