it's not intuitionistic at all!!!!!!!!!
Code:listPerson.class=org.springframework.web.servlet.view.JstlView listPerson.url=/WEB-INF/jsp/listPerson.jsp
can i put them into servlet.xml? such as ...
i wish something like that,so i can easily to know which jsp would controller goCode:<bean name="/addPerson.form" class="com.hii.web.AddPersonForm"> <property name="formView"> <value>jstlViewType</value> <value>/addPerson.jsp</value> </property> <property name="successView"> <value>jstlViewType</value> <value>/listPerson.jsp</value> </property> <property name="validator"><ref local="personValidator"/></property> <property name="hibernateDao"><ref bean="hibernateDao"/></property> </bean>
if i have big project,hundreds of views,i have to ctrl+find to see which exactly jsp would return.....i hate that!!!
what can i do?


Reply With Quote