struts2中 welcome-file-list 設置的路徑不能是Action地址

<welcome-file-list>中配置Struts2 的action是不能被訪問的,可是Struts1的行原理在於:
在tomcat中配置的 <welcom-file> 是基於servlet 的struts2 的運行機制倒是filter。


解決辦法,設置index.jsp等,在這個裏面經過url跳轉或struts2的action標籤跳轉到你的action的地址就能夠了,

web.xml中這樣配置 :
<welcome-file-list>
  <welcome-file>index.jsp</welcome-file>
</welcome-file-list>web

而後在index.jsp中使用Struts2的標籤 :tomcat

<s:action name="getUserList" executeResult="true"></s:action>jsp

這個標籤會執行這個action,而後返回結果頁面.url

不要忘記引入struts-tags哦!xml

相關文章
相關標籤/搜索