Spring Controller中的Init方法(注释版本)

我正在将控制器转换为较新的注释版本。在旧版本中,我曾经使用以下命令在springmvc-servlet.xml中指定init方法:

<beans>

<bean id="myBean" class="..." init-method="init"/>

</beans>

如何使用注释版本指定init方法?

回答:

您可以使用

@PostConstruct

public void init() {

// ...

}

以上是 Spring Controller中的Init方法(注释版本) 的全部内容, 来源链接: utcz.com/qa/400337.html

回到顶部