spring
I am workign on spring MVC and i have welcome page outside WEB-INF folder and other jsp page inside WEB-INF. I have given a url to that page from welcome page. Its not working. I guess sth wrong. DOes anyone know how can i give the correct url to jsp page inside WEB-NF.
Thanks
[290 byte] By [
akaura] at [2007-11-27 11:56:48]

HTMLs, images, JSP's, servlets etc. should not dwell under WEB-INF. It is supposed to contain stuff accessible only internally not externally.
sorry corlettk but i ma new to java .. so i posted here,...
thanks for replyinh all of u..
and i have welcome page where i am giving link to request account page... when users request for account .put their first name and last name in fields it should go to the controller.. and from controller..it would check whethere user info is there in system or not.... i m not gertting the desired results.. as in my -servlet.xml its given ...
and my page is outside web-inf
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass">
<value>org.springframework.web.servlet.view.JstlView</value>
</property>
<property name="prefix"><value>/WEB-INF/jsp/</value></property>
<property name="suffix"><value>.jsp</value></property>
<property name="order"><value>1</value></property>
</bean>
akaura at 2007-7-29 19:09:38 >
