2

我只是在编写一个 Stripes 动作 bean,从一个带注释的方法开始。

我错误地写道:

@After(stages = LifecycleStage.ActionBeanResolution) {
    // code here
}

编译器没问题

所以似乎我们可以在静态和非静态初始化块上添加注释

@After(stages = LifecycleStage.ActionBeanResolution) 
{
    // code here
}

@After(stages = LifecycleStage.ActionBeanResolution) 
static {
    // code here
}

您对这种奇怪的事情有任何用例想法吗?

4

1 回答 1

1

对不起,这是我 ide 的问题,它无法编译

于 2012-03-27T09:47:27.480 回答