Hiii all,
这个J2EE非常新。我必须将servlet URL作为“localhost:8080”
进行访问我的web.xml文件如下
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Ticky taka</servlet-name>
<servlet-class>servlets.TestServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Ticky taka</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
问题是,如果我想访问Servlet,我必须提供10.10.10.114:8080/TickyTacka/
URL。而不是上面的URl我希望将其作为
10.10.10.114:8080
是否可能
我正在使用Apache tomcat 7
请咨询
谢谢
答案 0 :(得分:2)
Tomcat具有应用程序上下文路径的概念,外部是应用程序的名称,在您的情况下为TickyTacka
,内部是在tomcap webapps
目录下安装应用程序的路径。
有一个特殊情况ROOT
应用程序上下文。在内部,它是目录webapps/ROOT
,但它映射到空的应用程序上下文路径。因此,如果您将自己的Web应用程序部署到ROOT
,则可以http://10.10.10.114:8080/
访问它。
但它是一种特殊的应用程序上下文,我知道不推荐使用它。正如vbera所说,在普通应用程序上下文路径中部署应用程序更为常见,并且隐藏通过apache
或nginx
重写URL后面的路径。