Finished development on Tomcat 5 and attempted to deploy on WebLogic 7.0 SP2. However, WLS 7 doesn't seem to like jsp's in /WEB-INF/jsp, and I got http error 404 (page not found). I could only make it to work if the jsp's are placed in the webapp root (not even subdir like /jsp)!
In jetform-servlet.xml
In views.properties:Code:<bean id="viewResolver" class="org.springframework.web.servlet.view.ResourceBundleViewResolver"> <property name="basename"><value>views</value></property> </bean> ... <bean name="/listApp.do" class="au.com.ing.jetform.web.ListAppController"> <property name="jetformManager"><ref bean="jetformManager"/></property> </bean>
Anyone has similar experience, or have I misconfigured WLS? Any workaround?Code:ListApp.class=org.springframework.web.servlet.view.JstlView # ListApp.url=/WEB-INF/jsp/ListApp.jsp - not working in WLS 7 # ListApp.url=/jsp/ListApp.jsp - also not working in WLS 7 ListApp.url=/ListApp.jsp


Reply With Quote