我是新來的Java春季和GlassFish 4.1 ..我的應用程序部署成功的GlassFish但瀏覽錯誤404 ..應用成功部署在GlassFish 4.1,但瀏覽錯誤404
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<servlet>
<servlet-name>springapp</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>springapp</servlet-name>
<url-pattern>*.htm</url-pattern>
</servlet-mapping>
<welcome-file-list>
<welcome-file>
index.jsp
</welcome-file>
</welcome-file-list>
</web-app>
嘗試使用管理控制檯,然後應用程序 - >您的應用程序,並檢查它部署在什麼上下文中。 –
我試過管理控制檯,並從那裏啓動,但同樣的錯誤 –
什麼是您使用的確切網址? –