<div dir="ltr"><div style="font-size:13.3333330154419px">初めまして、</div><div style="font-size:13.3333330154419px">既存のアプリケーションをGlassFishのVersion3に乗せようと思っていますが</div><div style="font-size:13.3333330154419px">FacesServletの初期化時にエラーが発生しています。</div><div style="font-size:13.3333330154419px">どなたか、s2JSFを用いたアプリケーションを、GlassFish version3で稼働する方法を</div><div style="font-size:13.3333330154419px">指南して頂けないでしょうか?</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">※WebLogic12CとTomcat7ではアプリケーションが正常に稼働したことは確認済みです。</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">公式サイトに記述しているsun-web.xmlの設定もしましたが、</div><div style="font-size:13.3333330154419px">GlassFishのServer.logにリスナーが設定されていないとログが出力されていました。</div><div style="font-size:13.3333330154419px">参照サイト:<a href="http://teeda.seasar.org/ja/deploy.html" target="_blank">http://teeda.seasar.org/ja/deploy.html</a></div><div style="font-size:13.3333330154419px">※本設定は、teeda用でしたが、S2JSF用に使用しました。</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">■設定ファイル(sun-web.xml)</div><div style="font-size:13.3333330154419px">★Seasar2公式サイトに載っていた方法。</div><div style="font-size:13.3333330154419px">Teeda用の設定だが、s2JSFの為に設定。</div><div style="font-size:13.3333330154419px">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</div><div style="font-size:13.3333330154419px">&lt;!DOCTYPE sun-web-app </div><div style="font-size:13.3333330154419px">    PUBLIC &quot;-//Sun Microsystems, Inc.//DTD Application Server 9.0 Servlet 2.5//EN&quot; </div><div style="font-size:13.3333330154419px">    &quot;<a href="http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd" target="_blank">http://www.sun.com/software/appserver/dtds/sun-web-app_2_5-0.dtd</a>&quot;&gt;</div><div style="font-size:13.3333330154419px">&lt;sun-web-app error-url=&quot;&quot;&gt;</div><div style="font-size:13.3333330154419px">    &lt;class-loader delegate=&quot;false&quot; /&gt;</div><div style="font-size:13.3333330154419px">    &lt;property name=&quot;useMyFaces&quot; value=&quot;true&quot; /&gt;</div><div style="font-size:13.3333330154419px">&lt;/sun-web-app&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">★Glass Fish v3からproperty名が、&quot;useMyFaces&quot;から&quot;useBundledJsf&quot;に変更とネットに</div><div style="font-size:13.3333330154419px">書いてあったので、それに合わせて設定。</div><div style="font-size:13.3333330154419px">&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;</div><div style="font-size:13.3333330154419px">&lt;!DOCTYPE sun-web-app PUBLIC &quot;-//Sun Microsystems, Inc.//DTD Application Server 8.1 Servlet 2.4//EN&quot; &quot;<a href="http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd" target="_blank">http://www.sun.com/software/appserver/dtds/sun-web-app_2_4-1.dtd</a>&quot;&gt;</div><div style="font-size:13.3333330154419px">&lt;sun-web-app&gt;</div><div style="font-size:13.3333330154419px">&lt;class-loader delegate=&quot;false&quot;/&gt;</div><div style="font-size:13.3333330154419px">&lt;property name=&quot;useBundledJsf&quot; value=&quot;true&quot;/&gt;</div><div style="font-size:13.3333330154419px">&lt;/sun-web-app&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">※同様の設定をglassfish-web.xmlに記述してディプロイを実施しましたが、</div><div style="font-size:13.3333330154419px">同様のエラーが発生しました。</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">■設定ファイル(web.xml)</div><div style="font-size:13.3333330154419px">抜粋</div><div style="font-size:13.3333330154419px">    &lt;listener&gt;</div><div style="font-size:13.3333330154419px">        &lt;listener-class&gt;org.apache.myfaces.webapp.StartupServletContextListener&lt;/listener-class&gt;</div><div style="font-size:13.3333330154419px">    &lt;/listener&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">    &lt;!-- Faces Servlet --&gt;</div><div style="font-size:13.3333330154419px">    &lt;servlet&gt;</div><div style="font-size:13.3333330154419px">        &lt;servlet-name&gt;Faces Servlet&lt;/servlet-name&gt;</div><div style="font-size:13.3333330154419px">        &lt;servlet-class&gt;javax.faces.webapp.FacesServlet&lt;/servlet-class&gt;</div><div style="font-size:13.3333330154419px">        &lt;load-on-startup&gt;2&lt;/load-on-startup&gt;</div><div style="font-size:13.3333330154419px">    &lt;/servlet&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">    &lt;servlet&gt;</div><div style="font-size:13.3333330154419px">        &lt;servlet-name&gt;s2servlet&lt;/servlet-name&gt;</div><div style="font-size:13.3333330154419px">        &lt;servlet-class&gt;org.seasar.framework.container.servlet.S2ContainerServlet&lt;/servlet-class&gt;</div><div style="font-size:13.3333330154419px">        &lt;init-param&gt;</div><div style="font-size:13.3333330154419px">            &lt;param-name&gt;debug&lt;/param-name&gt;</div><div style="font-size:13.3333330154419px">            &lt;param-value&gt;false&lt;/param-value&gt;</div><div style="font-size:13.3333330154419px">        &lt;/init-param&gt;</div><div style="font-size:13.3333330154419px">        &lt;load-on-startup&gt;1&lt;/load-on-startup&gt;</div><div style="font-size:13.3333330154419px">    &lt;/servlet&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">    &lt;!-- Faces Servlet Mapping --&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">    &lt;!-- virtual path mapping --&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">    &lt;servlet-mapping&gt;</div><div style="font-size:13.3333330154419px">        &lt;servlet-name&gt;Faces Servlet&lt;/servlet-name&gt;</div><div style="font-size:13.3333330154419px">        &lt;url-pattern&gt;/faces/*&lt;/url-pattern&gt;</div><div style="font-size:13.3333330154419px">    &lt;/servlet-mapping&gt;</div><div style="font-size:13.3333330154419px">    &lt;servlet-mapping&gt;</div><div style="font-size:13.3333330154419px">        &lt;servlet-name&gt;s2servlet&lt;/servlet-name&gt;</div><div style="font-size:13.3333330154419px">        &lt;url-pattern&gt;/s2servlet&lt;/url-pattern&gt;</div><div style="font-size:13.3333330154419px">    &lt;/servlet-mapping&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">    &lt;session-config&gt;</div><div style="font-size:13.3333330154419px">        &lt;session-timeout&gt;60&lt;/session-timeout&gt;</div><div style="font-size:13.3333330154419px">    &lt;/session-config&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">★フレームワーク</div><div style="font-size:13.3333330154419px">s2jsf 1.0.28</div><div style="font-size:13.3333330154419px">2Container 2.3.4</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">★環境</div><div style="font-size:13.3333330154419px">Windows Server2012</div><div style="font-size:13.3333330154419px">Oracle 12C</div><div style="font-size:13.3333330154419px">GlassFish v3</div><div style="font-size:13.3333330154419px">JDK 1.7</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px">★GlassFishのServer.logの抜粋</div><div style="font-size:13.3333330154419px">[#|2015-07-29T12:14:13.078+0900|SEVERE|glassfish3.1.2|org.apache.catalina.core.ContainerBase|_ThreadID=96;_ThreadName=Thread-2;|ContainerBase.addChild: start: </div><div style="font-size:13.3333330154419px">org.apache.catalina.LifecycleException: org.apache.catalina.LifecycleException: java.lang.IllegalStateException: No Factories configured for this Application - typically this is because a context listener is not setup in your web.xml.</div><div style="font-size:13.3333330154419px">A typical config looks like this;</div><div style="font-size:13.3333330154419px">&lt;listener&gt;</div><div style="font-size:13.3333330154419px">  &lt;listener-class&gt;org.apache.myfaces.webapp.StartupServletContextListener&lt;/listener-class&gt;</div><div style="font-size:13.3333330154419px">&lt;/listener&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardContext.start(StandardContext.java:5389)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.web.WebModule.start(WebModule.java:498)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:917)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:901)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:733)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:2019)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.web.WebContainer.loadWebModule(WebContainer.java:1669)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.web.WebApplication.start(WebApplication.java:109)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.internal.data.EngineRef.start(EngineRef.java:130)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.internal.data.ModuleInfo.start(ModuleInfo.java:269)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.internal.data.ApplicationInfo.start(ApplicationInfo.java:301)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:461)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.server.ApplicationLifecycle.deploy(ApplicationLifecycle.java:240)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.deployment.admin.DeployCommand.execute(DeployCommand.java:389)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.admin.CommandRunnerImpl$1.execute(CommandRunnerImpl.java:348)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:363)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.admin.CommandRunnerImpl.doCommand(CommandRunnerImpl.java:1085)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.admin.CommandRunnerImpl.access$1200(CommandRunnerImpl.java:95)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1291)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.admin.CommandRunnerImpl$ExecutionContext.execute(CommandRunnerImpl.java:1259)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:214)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.admin.rest.ResourceUtil.runCommand(ResourceUtil.java:207)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.admin.rest.resources.TemplateListOfResource.createResource(TemplateListOfResource.java:148)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at java.lang.reflect.Method.invoke(Method.java:606)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.spi.container.JavaMethodInvokerFactory$1.invoke(JavaMethodInvokerFactory.java:60)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.model.method.dispatch.AbstractResourceMethodDispatchProvider$ResponseOutInvoker._dispatch(AbstractResourceMethodDispatchProvider.java:205)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.model.method.dispatch.ResourceJavaMethodDispatcher.dispatch(ResourceJavaMethodDispatcher.java:75)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.HttpMethodRule.accept(HttpMethodRule.java:288)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.SubLocatorRule.accept(SubLocatorRule.java:134)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.RightHandPathRule.accept(RightHandPathRule.java:147)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.uri.rules.RootResourceClassesRule.accept(RootResourceClassesRule.java:84)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1469)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.application.WebApplicationImpl._handleRequest(WebApplicationImpl.java:1400)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1349)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.application.WebApplicationImpl.handleRequest(WebApplicationImpl.java:1339)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer._service(GrizzlyContainer.java:182)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.jersey.server.impl.container.grizzly.GrizzlyContainer.service(GrizzlyContainer.java:147)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.glassfish.admin.rest.adapter.RestAdapter.service(RestAdapter.java:148)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.tcp.http11.GrizzlyAdapter.service(GrizzlyAdapter.java:179)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.server.HK2Dispatcher.dispath(HK2Dispatcher.java:117)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.services.impl.ContainerMapper$Hk2DispatcherCallable.call(ContainerMapper.java:354)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.enterprise.v3.services.impl.ContainerMapper.service(ContainerMapper.java:195)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.http.ProcessorTask.invokeAdapter(ProcessorTask.java:860)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.http.ProcessorTask.doProcess(ProcessorTask.java:757)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.http.ProcessorTask.process(ProcessorTask.java:1056)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.http.DefaultProtocolFilter.execute(DefaultProtocolFilter.java:229)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.DefaultProtocolChain.executeProtocolFilter(DefaultProtocolChain.java:137)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:104)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.DefaultProtocolChain.execute(DefaultProtocolChain.java:90)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.http.HttpProtocolChain.execute(HttpProtocolChain.java:79)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.ProtocolChainContextTask.doCall(ProtocolChainContextTask.java:54)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.SelectionKeyContextTask.call(SelectionKeyContextTask.java:59)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.ContextTask.run(ContextTask.java:71)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.util.AbstractThreadPool$Worker.doWork(AbstractThreadPool.java:532)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at com.sun.grizzly.util.AbstractThreadPool$Worker.run(AbstractThreadPool.java:513)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at java.lang.Thread.run(Thread.java:745)</div><div style="font-size:13.3333330154419px">Caused by: org.apache.catalina.LifecycleException: java.lang.IllegalStateException: No Factories configured for this Application - typically this is because a context listener is not setup in your web.xml.</div><div style="font-size:13.3333330154419px">A typical config looks like this;</div><div style="font-size:13.3333330154419px">&lt;listener&gt;</div><div style="font-size:13.3333330154419px">  &lt;listener-class&gt;org.apache.myfaces.webapp.StartupServletContextListener&lt;/listener-class&gt;</div><div style="font-size:13.3333330154419px">&lt;/listener&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:5103)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardContext.start(StandardContext.java:5380)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>... 62 more</div><div style="font-size:13.3333330154419px">Caused by: java.lang.IllegalStateException: No Factories configured for this Application - typically this is because a context listener is not setup in your web.xml.</div><div style="font-size:13.3333330154419px">A typical config looks like this;</div><div style="font-size:13.3333330154419px">&lt;listener&gt;</div><div style="font-size:13.3333330154419px">  &lt;listener-class&gt;org.apache.myfaces.webapp.StartupServletContextListener&lt;/listener-class&gt;</div><div style="font-size:13.3333330154419px">&lt;/listener&gt;</div><div style="font-size:13.3333330154419px"><br></div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at javax.faces.FactoryFinder.getFactory(FactoryFinder.java:101)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at javax.faces.webapp.FacesServlet.init(FacesServlet.java:88)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardWrapper.initServlet(StandardWrapper.java:1453)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardWrapper.load(StandardWrapper.java:1250)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>at org.apache.catalina.core.StandardContext.loadOnStartup(StandardContext.java:5093)</div><div style="font-size:13.3333330154419px"><span style="white-space:pre-wrap">        </span>... 63 more</div><div style="font-size:13.3333330154419px">|#]</div></div>