訪问站点时仅仅是显示主页(index.jsp),没有请求连接数据库读取数据。
Posted liguangsunls
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了訪问站点时仅仅是显示主页(index.jsp),没有请求连接数据库读取数据。相关的知识,希望对你有一定的参考价值。
两部曲:
1:在你的web.xml中的Struts2的核心过滤器的映射中添加
<filter-mapping>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
1:在你的web.xml中的Struts2的核心过滤器的映射中添加
<filter-mapping>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<filter-name>struts2</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
2:把welcomelist改成你查询的action
<meta http-equiv=‘refresh‘ content=‘0;url=show.action‘>
以上是关于訪问站点时仅仅是显示主页(index.jsp),没有请求连接数据库读取数据。的主要内容,如果未能解决你的问题,请参考以下文章