a specific URL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了a specific URL相关的知识,希望对你有一定的参考价值。
我在项目中有2个网址,其中我需要<filter-mapping>
仅应用于一个网址。这有可能吗?我的网址是:
我需要将<filter-mapping>
仅应用于第一个URL,但第二个URL应该通过正常流程。
我在我的web.xml中尝试了以下内容,但它不起作用
<filter>
<filter-name>ContactFilter</filter-name>
<filter-class>com.my.company.ContactFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>ContactFilter</filter-name>
<url-pattern>/MyDetails/MyContact</url-pattern>
</filter-mapping>
谢谢你的帮助。
答案
你需要改变下面的<url-pattern>
<filter-mapping>
<filter-name>ContactFilter</filter-name>
<url-pattern>/MyContact</url-pattern>
</filter-mapping>
以上是关于a specific URL的主要内容,如果未能解决你的问题,请参考以下文章
Jquery - 选择 <a href="specific-url"> 周围的 <li>
项目启动报错Failed to configure a DataSource: 'url' attribute is not specified and no embedde(代码片段