我只是在编写一个 Stripes 动作 bean,从一个带注释的方法开始。
我错误地写道:
@After(stages = LifecycleStage.ActionBeanResolution) {
// code here
}
编译器没问题
所以似乎我们可以在静态和非静态初始化块上添加注释
@After(stages = LifecycleStage.ActionBeanResolution)
{
// code here
}
@After(stages = LifecycleStage.ActionBeanResolution)
static {
// code here
}
您对这种奇怪的事情有任何用例想法吗?