this is how I define the loaction of my jsp files:
<bean id="jspViewResolver"
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
But I have too many JSP files in one folder at the moment...I changed my directiory structure to this:
/WEB-INF/jsp/city/*.jsp
/WEB-INF/jsp/weather/*.jsp
How must I change my viewresolver so that both places are found?
Ask for more info if needed.