Hi All,
When specifying your form based on SimpleFormController in the XML config. file, does the JSP used for successview have to be "public", I'd like to have it hidden from public view in my WEB-INF/jsp directory.
Here's what I have so far:
<bean id="updateAccountFormController" class="com.xxx.controller.UpdateAccountFormControl ler">
<property name="sessionForm" value="true"/>
<property name="commandName" value="updateAccountCommand"/>
<property name="commandClass" value="com.thresholdcorp.hsmgmt.orm.Customer"/>
<property name="validator">
<bean class="com.thresholdcorp.thresholdusers.validator. UpdateAccountValidator"/>
</property>
<property name="formView" value="updateaccount"/>
<property name="successView" value="updateaccountok.jsp"/>
<property name="dao">
<ref bean="customerDao"/>
</property>
</bean>


Reply With Quote
