spring mvc 访问不到 js css
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring mvc 访问不到 js css相关的知识,希望对你有一定的参考价值。
jsp:
spring-mvc.xml
web.xml
求大侠帮忙
jsp 也是通过action才能访问的到追问
那只能放在web-inf外面?
freemarker也是一样吗?
网上有说是因为jsp放在web-inf下面安全,在web-inf下应该怎样访问?
请教,感谢!
web-inf 下的jsp 是通过action才能访问的 也就是说这个目录不对外开发
这样才安全
js 如果是通过地址直接访问的 自然是获取不到
明白了,就是想问一下:web-inf下的jsp如果去访问js/css...
追答没问题
追问我就想问怎么访问的,我现在的写法有问题,不知道哪出错了。
追答js移到web-inf外面 改下js引用路径
参考技术A 你这个是没有访问。.js ,.css配置需要你在添加这里个就可以了 http://www.121ask.com/thread-5473-1.html有解决方案Spring MVC 拦截 js,css,png 等资源
springMVC的<mvc:resources mapping="***" location="***">标签是在spring3.0.4出现的,主要是用来定义对静态资源的访问。
上网搜了一下跟这个配置相关的文章,大多推荐用下面这种。可是,用这种的话,如果有一个新目录,就得新增一条配置,比较麻烦。
<!-- For static resources --> <mvc:resources mapping="/image/**" location="/images/" /> <mvc:resources mapping="/js/**" location="/js/" /> <mvc:resources mapping="/css/**" location="/css/" /> <mvc:resources mapping="/html/**" location="/html/" /> <mvc:resources mapping="/software/**" location="/software/" />
下面这种是直接根据静态文件的后缀来配置的,比较通用,不用为每个子目录配置一个:
<mvc:resources location="/" mapping="/**/*.html"/> <mvc:resources location="/" mapping="/**/*.js"/> <mvc:resources location="/" mapping="/**/*.css"/> <mvc:resources location="/" mapping="/**/*.png"/> <mvc:resources location="/" mapping="/**/*.gif"/>
(原创文章,转载请注明转自Clement-Xu的csdn博客。)
版权声明:本文为原创文章,转载请注明转自Clement-Xu的csdn博客。
来源:http://blog.csdn.net/tlin2011/article/details/45482463
spring mvc 配置为:
<servlet-mapping>
<servlet-name>spring</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
时,当直接访问png,jpg等资源时,也会拦截, web.xml 加入如下配置 则web服务器会处理,不会被spring 拦截
亲测:
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.jpg</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.js</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.css</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.png</url-pattern>
</servlet-mapping>
另外: 不知为何加入<mvc:resources mapping="/images/**" location="/images/" /> 可以访问资源,但是访问不了 controller了
以上是关于spring mvc 访问不到 js css的主要内容,如果未能解决你的问题,请参考以下文章
spring mvc访问静态资源的问题, .js .jpg .css
请问:为啥配置Spring MVC的DispatcherServlet的url-pattern为/能访问JSP,而不能访问JS、CSS文件?
springmvc的问题,URL分号之后的内容读不到这是为啥呢?