嗨,我是新來的servlet和JBoss的,我只是部署在JBoss我的servlet 4.2 .jboss控制檯顯示我是成功部署我的servlet.war的URL是什麼?
我的web.xml中含有
<display-name>Notification_Auth_server_simulator</display-name>
<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>
<description></description>
<display-name>Notify</display-name>
<servlet-name>Notify</servlet-name>
<servlet-class>com.me.Notify</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Notify</servlet-name>
<url-pattern>/notify</url-pattern>
</servlet-mapping>
</web-app>
和對於JBoss的web .XML
<jboss-web>
<context-root>mysite</context-root>
</jboss-web>
我試着在我的瀏覽器 http://localhost:8080/mysite/notify,它不工作
WHA t是正確的網站名稱?
感謝
顯示您的servlet代碼和日誌 – Bozho 2010-05-20 11:43:38
最終,您在瀏覽器中嘗試的是什麼 - 原始版本是\還是更新後的版本? – Bozho 2010-05-20 11:44:12
是的,它不起作用。這就是爲什麼你在這裏:)但是會發生什麼呢?你有什麼錯誤頁面/代碼/消息?服務器日誌沒有說出有趣的事情嗎? – BalusC 2010-05-20 11:45:42