作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要禁用 HTTP 方法 OPTIONS
。我在 web.xml 中放置了以下配置。它在 tomcat 中工作(不允许 OPTIONS 方法)但是在错误时抛出以下错误部署
<security-constraint>
<web-resource-collection>
<web-resource-name>Restricted HTTP methods.</web-resource-name>
<url-pattern>/*</url-pattern>
<http-method>OPTIONS</http-method>
</web-resource-collection>
<auth-constraint />
</security-constraint>
[HTTP:101401]Web应用Department.war中的url-pattern Coordinator映射到多个Servlet
weblogic 是否需要不同的配置或 weblogic 中的已知错误?
最佳答案
我在 WL 12.2.1.3.0 中遇到了这个错误,通过删除下面的 Maven 依赖项解决了这个问题:
<exclusions>
<exclusion>
<groupId>javax.xml</groupId>
<artifactId>webservices-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.ws</groupId>
<artifactId>webservices-rt</artifactId>
</exclusion>
</exclusions>
关于java - [HTTP :101401]The url-pattern Coordinator in web application Department. war被映射到多个Servlets?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41805161/
我是一名优秀的程序员,十分优秀!