Great, I'm going to prepare a new test build then. czw., 20 lut 2025 o 08:00 Kusal Kithul-Godage <kusal.kithulgod...@gmail.com> napisał(a): > > No worries! Now that we have the 'release' option defined in the POM > you should be able to continue using JDK17 but of course you can play > it safe by just using JDK8 > > On Thu, Feb 20, 2025 at 5:56 PM Łukasz Lenart <lukasz.len...@gmail.com> wrote: > > > > Thanks a lot Kusal for finding the issue and the fix! I started using > > JDK17 as a default JDK on my computer and missed that :( Re-installed > > JDK8 and should be fine now :) > > > > czw., 20 lut 2025 o 06:30 Kusal Kithul-Godage > > <kusal.kithulgod...@gmail.com> napisał(a): > > > > > > Thanks for sharing the full stacktrace. > > > > > > So the relevant error here is: java.lang.NoSuchMethodError: > > > java.nio.ByteBuffer.flip()Ljava/nio/ByteBuffer; > > > > > > This is a bytecode error which occurs when a library targeting JRE8 is > > > compiled with a JDK greater than 8 but without the '--release 8' > > > option. > > > > > > I've created a PR with a fix: https://github.com/apache/struts/pull/1225 > > > > > > On Thu, Feb 20, 2025 at 11:44 AM 戸田 栞太(HARP) <kanta.t...@e-harp.jp> wrote: > > > > > > > > I used a simple hierarchical structure. > > > > Below is the JSP code: > > > > > > > > ``` sample.jsp > > > > <%@ page language="java" contentType="text/html; charset=UTF-8" > > > > pageEncoding="UTF-8"%><%-- > > > > --%><%@ taglib prefix="s" uri="/struts-tags" %><%-- > > > > --%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" > > > > "http://www.w3.org/TR/html4/loose.dtd"><%-- > > > > --%><%@ taglib uri="http://jawr.net/tags" prefix="jwr" %> > > > > > > > > <html> > > > > <head> > > > > > > > > </head> > > > > <body> > > > > <s:include value="sample2.jsp" /> > > > > </body> > > > > </html> > > > > ``` > > > > > > > > Below is the full stack trace: > > > > ``` > > > > [2025-02-20 09:23:54.839] WARN SksExceptionMappingInterceptor- , > > > > > > > > ,W,41005,jp.e_harp.sks.common.interceptor.SksExceptionMappingInterceptor,処理の継続不可能な例外が発生しました > > > > org.apache.jasper.JasperException: [/WEB-INF/jsp/sample.jsp] の処理中に行番号 > > > > [12] で例外が発生しました。 > > > > > > > > 9: </head> > > > > 10: <body> > > > > 11: <s:include value="sample2.jsp" /> > > > > 12: </body> > > > > 13: </html> > > > > > > > > > > > > Stacktrace: > > > > at > > > > org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:610) > > > > ~[jasper.jar:9.0.71] > > > > at > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:489) > > > > ~[jasper.jar:9.0.71] > > > > at > > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379) > > > > ~[jasper.jar:9.0.71] > > > > at > > > > org.apache.jasper.servlet.JspServlet.service(JspServlet.java:327) > > > > ~[jasper.jar:9.0.71] > > > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) > > > > ~[servlet-api.jar:4.0.FR] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) > > > > ~[tomcat-websocket.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:711) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:385) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:313) > > > > ~[catalina.jar:9.0.71] > > > > at > > > > org.apache.struts2.result.ServletDispatcherResult.doExecute(ServletDispatcherResult.java:168) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.result.StrutsResultSupport.doExecute(StrutsResultSupport.java:291) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.result.StrutsResultSupport.execute(StrutsResultSupport.java:207) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at com.opensymphony.xwork2.Result.execute(Result.java:31) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:381) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:288) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:104) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:185) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > jp.e_harp.sks.common.interceptor.SksWorkflowInterceptor.doIntercept(SksWorkflowInterceptor.java:77) > > > > ~[classes/:?] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:45) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ConversionErrorInterceptor.doIntercept(ConversionErrorInterceptor.java:147) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.parameter.ParametersInterceptor.doIntercept(ParametersInterceptor.java:204) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.parameter.ParametersInterceptor.doIntercept(ParametersInterceptor.java:204) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.StaticParametersInterceptor.intercept(StaticParametersInterceptor.java:206) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.MultiselectInterceptor.intercept(MultiselectInterceptor.java:67) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.CheckboxInterceptor.intercept(CheckboxInterceptor.java:89) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.FileUploadInterceptor.intercept(FileUploadInterceptor.java:200) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor.intercept(ModelDrivenInterceptor.java:104) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor.intercept(ScopedModelDrivenInterceptor.java:146) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.debugging.DebuggingInterceptor.intercept(DebuggingInterceptor.java:260) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ChainingInterceptor.intercept(ChainingInterceptor.java:169) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.PrepareInterceptor.doIntercept(PrepareInterceptor.java:176) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.I18nInterceptor.intercept(I18nInterceptor.java:139) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.ServletConfigInterceptor.intercept(ServletConfigInterceptor.java:154) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept(AliasInterceptor.java:233) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:104) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:104) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > jp.e_harp.common.interceptor.UserAgentCheckInterceptor.doIntercept(UserAgentCheckInterceptor.java:48) > > > > ~[CmnLibrary.jar:?] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:199) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.factory.StrutsActionProxy.execute(StrutsActionProxy.java:48) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.result.ActionChainResult.execute(ActionChainResult.java:235) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at com.opensymphony.xwork2.Result.execute(Result.java:31) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeResult(DefaultActionInvocation.java:381) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:288) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:104) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.DefaultWorkflowInterceptor.doIntercept(DefaultWorkflowInterceptor.java:185) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > jp.e_harp.sks.common.interceptor.SksWorkflowInterceptor.doIntercept(SksWorkflowInterceptor.java:77) > > > > [classes/:?] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.validation.AnnotationValidationInterceptor.doIntercept(AnnotationValidationInterceptor.java:45) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ConversionErrorInterceptor.doIntercept(ConversionErrorInterceptor.java:147) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.parameter.ParametersInterceptor.doIntercept(ParametersInterceptor.java:204) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.parameter.ParametersInterceptor.doIntercept(ParametersInterceptor.java:204) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.StaticParametersInterceptor.intercept(StaticParametersInterceptor.java:206) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.MultiselectInterceptor.intercept(MultiselectInterceptor.java:67) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.CheckboxInterceptor.intercept(CheckboxInterceptor.java:89) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.FileUploadInterceptor.intercept(FileUploadInterceptor.java:200) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ModelDrivenInterceptor.intercept(ModelDrivenInterceptor.java:104) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ScopedModelDrivenInterceptor.intercept(ScopedModelDrivenInterceptor.java:146) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.debugging.DebuggingInterceptor.intercept(DebuggingInterceptor.java:260) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ChainingInterceptor.intercept(ChainingInterceptor.java:169) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.PrepareInterceptor.doIntercept(PrepareInterceptor.java:176) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.I18nInterceptor.intercept(I18nInterceptor.java:139) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.interceptor.ServletConfigInterceptor.intercept(ServletConfigInterceptor.java:154) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AliasInterceptor.intercept(AliasInterceptor.java:233) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:104) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:104) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > jp.e_harp.common.interceptor.UserAgentCheckInterceptor.doIntercept(UserAgentCheckInterceptor.java:48) > > > > [CmnLibrary.jar:?] > > > > at > > > > com.opensymphony.xwork2.interceptor.MethodFilterInterceptor.intercept(MethodFilterInterceptor.java:102) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.ExceptionMappingInterceptor.intercept(ExceptionMappingInterceptor.java:199) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.interceptor.AbstractInterceptor.intercept(AbstractInterceptor.java:36) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.executeConditional(DefaultActionInvocation.java:303) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > com.opensymphony.xwork2.DefaultActionInvocation.invoke(DefaultActionInvocation.java:257) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.factory.StrutsActionProxy.execute(StrutsActionProxy.java:48) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.dispatcher.Dispatcher.serviceAction(Dispatcher.java:739) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.dispatcher.ExecuteOperations.executeAction(ExecuteOperations.java:79) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter.handleRequest(StrutsPrepareAndExecuteFilter.java:163) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter.tryHandleRequest(StrutsPrepareAndExecuteFilter.java:146) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter.doFilter(StrutsPrepareAndExecuteFilter.java:134) > > > > [struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.tuckey.web.filters.urlrewrite.UrlRewriteFilter.doFilter(UrlRewriteFilter.java:404) > > > > [urlrewritefilter-4.0.3.jar:4.0.3] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:177) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:97) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:541) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:135) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:92) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:687) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:78) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:360) > > > > [catalina.jar:9.0.71] > > > > at > > > > org.apache.coyote.ajp.AjpProcessor.service(AjpProcessor.java:433) > > > > [tomcat-coyote.jar:9.0.71] > > > > at > > > > org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:65) > > > > [tomcat-coyote.jar:9.0.71] > > > > at > > > > org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:891) > > > > [tomcat-coyote.jar:9.0.71] > > > > at > > > > org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1784) > > > > [tomcat-coyote.jar:9.0.71] > > > > at > > > > org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:49) > > > > [tomcat-coyote.jar:9.0.71] > > > > at > > > > org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1191) > > > > [tomcat-util.jar:9.0.71] > > > > at > > > > org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) > > > > [tomcat-util.jar:9.0.71] > > > > at > > > > org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61) > > > > [tomcat-util.jar:9.0.71] > > > > at java.lang.Thread.run(Thread.java:750) [?:1.8.0_362] > > > > Caused by: javax.servlet.ServletException: java.lang.NoSuchMethodError: > > > > java.nio.ByteBuffer.flip()Ljava/nio/ByteBuffer; > > > > at > > > > org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:657) > > > > ~[jasper.jar:9.0.71] > > > > at > > > > org.apache.jsp.WEB_002dINF.jsp.sample_jsp._jspService(sample_jsp.java:153) > > > > ~[?:?] > > > > at > > > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) > > > > ~[jasper.jar:9.0.71] > > > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) > > > > ~[servlet-api.jar:4.0.FR] > > > > at > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:466) > > > > ~[jasper.jar:9.0.71] > > > > ... 243 more > > > > Caused by: java.lang.NoSuchMethodError: > > > > java.nio.ByteBuffer.flip()Ljava/nio/ByteBuffer; > > > > at > > > > org.apache.struts2.util.FastByteArrayOutputStream.decodeAndWriteOut(FastByteArrayOutputStream.java:154) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.util.FastByteArrayOutputStream.writeTo(FastByteArrayOutputStream.java:98) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.components.Include.include(Include.java:277) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at org.apache.struts2.components.Include.end(Include.java:170) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.struts2.views.jsp.ComponentTagSupport.doEndTag(ComponentTagSupport.java:38) > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > at > > > > org.apache.jsp.WEB_002dINF.jsp.sample_jsp._jspx_meth_s_005finclude_005f0(sample_jsp.java:174) > > > > ~[?:?] > > > > at > > > > org.apache.jsp.WEB_002dINF.jsp.sample_jsp._jspService(sample_jsp.java:137) > > > > ~[?:?] > > > > at > > > > org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70) > > > > ~[jasper.jar:9.0.71] > > > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) > > > > ~[servlet-api.jar:4.0.FR] > > > > at > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:466) > > > > ~[jasper.jar:9.0.71] > > > > ... 243 more > > > > ``` > > > > > > > > Please review the attached code and the full stack trace. > > > > > > > > ________________________________________ > > > > 差出人: Kusal Kithul-Godage <kusal.kithulgod...@gmail.com> > > > > 送信日時: 2025年2月19日 19:29 > > > > 宛先: Struts Developers List > > > > CC: sds-devs > > > > 件名: Re: [TEST] Apache Struts 6.7.3 is ready > > > > > > > > Could you share the full stacktrace, including the exception thrown > > > > and caused by hierarchy? > > > > > > > > On Wed, Feb 19, 2025 at 9:14?PM 戸田 栞太(HARP) <kanta.t...@e-harp.jp> > > > > wrote: > > > > > > > > > > Hello, > > > > > > > > > > When using the <s value="xxx.jsp" /> tag in a JSP with the Struts > > > > > tags library, > > > > > the included page does not appear. The following error is displayed: > > > > > > > > > > Stacktrace: > > > > > at > > > > > org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:610) > > > > > ~[jasper.jar:9.0.71] > > > > > at > > > > > org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:489) > > > > > ~[jasper.jar:9.0.71] > > > > > at > > > > > org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:379) > > > > > ~[jasper.jar:9.0.71] > > > > > at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:327) > > > > > ~[jasper.jar:9.0.71] > > > > > at javax.servlet.http.HttpServlet.service(HttpServlet.java:779) > > > > > ~[servlet-api.jar:4.0.FR] > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:227) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:53) > > > > > ~[tomcat-websocket.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:189) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:162) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:711) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:459) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:385) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:313) > > > > > ~[catalina.jar:9.0.71] > > > > > at > > > > > org.apache.struts2.result.ServletDispatcherResult.doExecute(ServletDispatcherResult.java:168) > > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > > at > > > > > org.apache.struts2.result.StrutsResultSupport.doExecute(StrutsResultSupport.java:291) > > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > > at > > > > > org.apache.struts2.result.StrutsResultSupport.execute(StrutsResultSupport.java:207) > > > > > ~[struts2-core-6.7.3.jar:6.7.3] > > > > > … (omitted) > > > > > > > > > > Here is the related ticket: > > > > > https://issues.apache.org/jira/browse/WW-5526 > > > > > > > > > > Has this change made <s value="xxx.jsp" /> unusable? > > > > > If so, is there an alternative approach to include JSP pages? > > > > > > > > > > On 2025/02/17 10:41:41 Lukasz Lenart wrote: > > > > > > Hello, > > > > > > > > > > > > This is a patch release of Struts 6.x.x which contains only > > > > > > non-breaking changes. Please take the time and test the bits - any > > > > > > help is appreciated. Please report any problems you will spot. > > > > > > > > > > > > Here are the changes from the previous version: > > > > > > https://github.com/apache/struts/releases/tag/STRUTS_6_7_3 > > > > > > > > > > > > Staging Maven repo > > > > > > https://repository.apache.org/content/groups/staging/ > > > > > > > > > > > > Standalone artifacts > > > > > > https://dist.apache.org/repos/dist/dev/struts/6.7.3/ > > > > > > > > > > > > Release notes > > > > > > https://cwiki.apache.org/confluence/display/WW/Version+Notes+6.7.3 > > > > > > > > > > > > > > > > > > Kind regards > > > > > > -- > > > > > > ?ukasz > > > > > > > > > > > > --------------------------------------------------------------------- > > > > > > To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org > > > > > > For additional commands, e-mail: dev-h...@struts.apache.org > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org > > > For additional commands, e-mail: dev-h...@struts.apache.org > > > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org > > For additional commands, e-mail: dev-h...@struts.apache.org > > > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org > For additional commands, e-mail: dev-h...@struts.apache.org >
--------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org For additional commands, e-mail: dev-h...@struts.apache.org