2

我不知道拦截器应该如何工作,因为我有一些带有 @Intercepted 注释的 MadvocAction,但似乎没有访问拦截器堆栈。

@MadvocAction("index")
public class IndexAction extends AppAction {

@PetiteInject
private TemperatureService temperatureService;

@Action
@InterceptedBy(AppInterceptorStack.class)
public void view() {
    // body here ....
}

和拦截器堆栈:

package ro.videanuadrian.smartHome.web.interceptors;

import jodd.joy.madvoc.interceptor.DefaultInterceptorStack;
import jodd.madvoc.interceptor.ActionInterceptorStack;
import jodd.madvoc.interceptor.EchoInterceptor;

public class AppInterceptorStack extends ActionInterceptorStack {

public AppInterceptorStack() {

    super(
        AppAuthenticationInterceptor.class,
        EchoInterceptor.class,
        DefaultInterceptorStack.class
    );
}
}

任何想法 ?

使用 madvoc 配置更新:所以这是在我的 web.xml 中:

  <filter>
    <filter-name>madvoc</filter-name>
    <filter-class>jodd.madvoc.MadvocServletFilter</filter-class>        
    <init-param>
        <param-name>madvoc.webapp</param-name>
        <param-value>ro.videanuadrian.smartHome.config.SmartHomeWebApplication</param-value>
    </init-param>
     <init-param>
        <param-name>madvoc.params</param-name>
        <param-value>/madvoc.props</param-value>
    </init-param>         
</filter>  

这就是我的 Madvoc it1s 的初始化方式:

public class SmartHomeWebApplication extends PetiteWebApplication {

final SmartHomeServiceCore serviceCore;

public SmartHomeWebApplication() {
    serviceCore = new SmartHomeServiceCore();
    serviceCore.start();     
}


/**
 * Adds configurator to Madvoc container and invokes configuration.
 */
@Override
public void configure(MadvocConfigurator configurator) {

    if (configurator instanceof AutomagicMadvocConfigurator){
        AutomagicMadvocConfigurator amc = (AutomagicMadvocConfigurator) configurator;
        amc.setExcludeAllEntries(true);
        amc.setIncludedEntries("ro.videanuadrian.*");

        registerComponent(amc);
        amc.configure();
    }
}  

还有 madvoc.props:

 madvocConfig.defaultInterceptors=ro.videanuadrian.smartHome.web.interceptors.AppInterceptorStack

 madvocConfig.fileUploadFactory.maxFileSize=-1  

在你的回答之后,我发表了评论madvocConfig.defaultInterceptors,但结果是一样的。

4

1 回答 1

0

你在这里所做的似乎很好。但是,注释可能不起作用的原因之一是:您可能使用madvoc-routes.txt?

正如这里所解释的,定义动作和拦截器的另一种方法是将此配置文件与路由一起使用。如果启用此功能,您可能会忽略注释。

请检查这是否属实,如果是的话:

  • 在路由文件中定义拦截器
  • 或删除路由并进行仅注释配置。

如果不是这种情况,那么您会发现一些特定的东西(错误,换句话说;),虽然这个功能非常基本 - 如果是这样,请随时在 github 上提出问题 :)

编辑

我制作的webapp 示例似乎模仿了您所做的一切。我的 inreceptor 被调用。你愿意检查一下吗?

于 2016-03-26T18:57:17.563 回答