java – 我无法在Spring-MVC中访问Robots.txt
作者:互联网
我试图在Spring-MVC中访问robots.txt.为了测试代码,我将robots.txt放在WebContent,Root和WEB-INF中,但我无法访问其中任何一个.
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中有:
< MVC:默认servlet的处理程序/>
< 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