Results 1 to 1 of 1
- 06-07-2008, 09:02 PM #1
Member
- Join Date
- May 2008
- Posts
- 3
- Rep Power
- 0
Not direct to localhost:8080/test/index.do and show This is my JSP page?
I just got a jsp project with struts, spring, hibernate, mysql 5, running on tomcat 6, using eclipse ide. Although this is a web project, it was build with a java project on eclipse and then copy the jsp, xml, class files to tomcat webapps.
In tomcat -> webapps -> webproject -> web-inf -> web.xml
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>action</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
When I open localhost:8080/webproject
Q.1 Why it does not direct to localhost:8080/webproject/index.do?
I saw the web.xml, there is no <welcome-file>index.do </welcome-file>, but it can be directed to index.do on another machine, does tomcat server’s server.xml or web.xml can configure it?
Q.2 When I open localhost:8080/webproject/index.do or localhost:8080/webproject/index.jsp or localhost:8080/webproject/
It shows “This is my JSP page.” It does not show the index page correctly.
I checked the dataSource in ApplicationContent.xml of spring framework does not throw exception with run the index.do page.
So, where or which file that I configured wrongly and made it just return to This is my JSP page.
Thanks for help
Similar Threads
-
show a value in javascipt in the jsp page
By hussainzim in forum JavaServer Pages (JSP) and JSTLReplies: 0Last Post: 05-20-2008, 09:38 AM -
how direct her/ him to the Sun´s download page?
By willemjav in forum Java AppletsReplies: 1Last Post: 04-17-2008, 04:03 PM -
netbeans 6.0 not show commpunent or show blank page
By fahimaamir in forum NetBeansReplies: 1Last Post: 01-26-2008, 06:20 AM -
how to load a servlet on index.jsp page...
By sujithc34 in forum Java ServletReplies: 1Last Post: 01-19-2008, 12:28 AM -
the web site "monitor test page"
By dubdubdub in forum New To JavaReplies: 0Last Post: 11-28-2007, 07:48 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks