struts2 でアノテーション付きのインターセプターを使用してリクエストとレスポンスを処理し、事前アクションと事後アクションを実行できるようにしようとしています。
しかし、私は実際には変更できないコンベンションプラグインでstruts 2を最初に使用しました。私のフレームワークには春も含まれています。
しかし、今問題は、インターセプターを実際のアノテーションとして使用しようとすると、アプリケーションの開始時に次の例外が発生することです。
SEVERE: Exception starting filter struts2
Unable to load configuration. - [unknown location]
at org.apache.struts2.dispatcher.Dispatcher.init(Dispatcher.java:483)
....
Caused by: Unable to load configuration. - [unknown location]
at com.opensymphony.xwork2.config.ConfigurationManager.getConfiguration(ConfigurationManager.java:58)
.....
Caused by: Unable to find interceptor class referenced by ref-name mylogging - [unknown location]
私のコード構造は非常に単純です。
アクション クラスは次のようになります。
@InterceptorRefs({
@InterceptorRef("mylogging")
})
public class LoginAction implements ModelDriven{
.....
@Action(value="/login",results={@Result(name="success",location="/jsp/successPage.jsp"),
@Result(name="login",location="/jsp/userLogin.jsp")})
public String execute() {
....
Struts.xml:
<struts>
<constant name="struts.devMode" value="true" />
<constant name="struts.ui.theme" value="simple" />
<constant name="struts.enable.SlashesInActionNames" value="true" />
<constant name="struts.mapper.alwaysSelectFullNamespace" value="false"/>
<package name="default" namespace="" extends="struts-default">
<interceptors>
<interceptor name="mylogging"
class="com.lab.interceptor.LoggingInterceptor">
</interceptor>
<interceptor-stack name="loggingStack">
<interceptor-ref name="mylogging" />
<interceptor-ref name="defaultStack" />
</interceptor-stack>
</interceptors>
</package>
</struts>
私のデプロイメント記述子本体 (web.xml):
<filter>
<filter-name>struts2</filter-name>
<filter-class>
org.apache.struts2.dispatcher.ng.filter.StrutsPrepareAndExecuteFilter
</filter-class>
<init-param>
<param-name>actionPackages</param-name>
<param-value>com.lab.actions</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>struts2</filter-name>
<url-pattern>*.action</url-pattern>
</filter-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/classes/resources/config/SpringBeans.xml</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
私のアクションからModelDrivenの実装を削除する必要はないと思うので、なぜその例外がスローされているのかを理解するのに役立つことを願っています.
前もって感謝します