关于Struts2重复提示校验信息问题

时间:2021-09-16 17:25:08

当在前端输入不合法的信息后,跳转到Struts2校验器进行校验,而在前台显示重复的错误提示,面对这样的问题,首先应该检查校验器是否正确配置,如果正确配置,则在Spring中的ApplicationContext.xml配置文件中

<!-- 配置EditBlogInfo Action -->

<bean id="editeBlogInfo" class="com.*.action.EditBlogInfo" scope="prototype">
<property name="blogInfoService">
<ref bean="blogInfoService"/>
</property>

</bean>

加上scope="prototype"属性。