编程语言
首页 > 编程语言> > java – 我无法在Spring-MVC中访问Robots.txt

java – 我无法在Spring-MVC中访问Robots.txt

作者:互联网

我试图在Spring-MVC中访问robots.txt.为了测试代码,我将robots.txt放在WebContent,Root和WEB-INF中,但我无法访问其中任何一个.

我已经应用了这些问题的答案1,2,3无济于事.

mycode的

<mvc:resources mapping="/resources/**" location="/resources/" />
<mvc:resources mapping="/robots.txt" location="/robots.txt" order="0" />
<mvc:annotation-driven />

解决方法:

这对我有用:

将robots.txt直接放在webapp下

在mvc-dispatcher-servlet.xml中有:

&LT MVC:默认servlet的处理程序/&GT

< mvc:resources mapping =“/ resources / **”location =“/,classpath:/ META-INF / web-resources /”/>

使用maven来建立你的战争

标签:robots-txt,java,spring,spring-mvc,web-hosting
来源: https://codeday.me/bug/20190929/1832855.html