struts2-convention-pluginをWEB-INF>libいれ、tomcatを起動させ画面表示すると、 The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.と404エラーが表示されます。struts2-convention-pluginを消すと問題なく再度表示されます。
struts2-convention-pluginをWEB-INF>libいれた状態で、画面表示されるようにしたいのですが、何が問題となっているかお分かりのかたおられますでしょうか?
web.xml
<filter>
<filter-name>struts2</filter-name>
<filter-class>org.apache.struts2.dispatcher.filter.StrutsPrepareAndExecuteFilter</filter-class>
</filter>
</web-app><filter-mapping> <filter-name>struts2</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
struts.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" "http://struts.apache.org/dtds/struts-2.0.dtd"> <struts> <!-- アクションのパッケージ定義 --> <package name="default" extends="struts-default"> <!-- Hello worldのサンプルアクション --></struts><action name="top" class="sample.IndexAction" method="execute"> <result name="success">/view/sample/index.jsp</result> </action> <action name="hello" class="sample.TestAction" method="execute"> <result name="success">/view/sample/index.jsp</result> </action> </package>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。