url -parrten的 / 和 /*区别,以及如何访问静态文件

<url-pattern>/</url-pattern>:
*.jsp 以外的js,html等静态文件都会被DispatcherServlet调用
,如果controller请求没有请求文件的前缀
,就会404!!!
请注意:(如http://localhost:8080/项目名/index.html可以匹配controller中的@RequestMapping("/index")的返回视图!!!)

项目使用静态文件解决办法
一.最直观的写法:
(如:排除后缀为html结尾的文件)

<servlet-mapping>
		<servlet-name>springmvc</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>
	//排除*.html进入DispatcherServlet调用
	<servlet-mapping>
		<servlet-name>default</servlet-name>
		<url-pattern>*.html</url-pattern>
	</servlet-mapping>
		//排除*.js进入DispatcherServlet调用
	<servlet-mapping>
		<servlet-name>default</servlet-name>
		<url-pattern>*.js</url-pattern>
	</servlet-mapping>

二.最有针对性的写法

<!--通过location,可以重新定义资源文件的位置-->
<mvc:resources mapping="/image/**" location="/WEB-INF/resource/image/"/> 

**指的是image第一级子目录, *指的是image所有级子代目录

如果出现下面的错误,可能是没有配置<mvc:annotation-driven />的原因。
报错WARNING: No mapping found for HTTP request with URI [/mvc/user/findUser/lisi/770] in DispatcherServlet with name ‘springMVC’

三.最简单的写法

<!--静态页面,如html,css,js,images可以访问-->
<mvc:default-servlet-handler />

*方案二、方案三 在访问静态资源时,如果有匹配的(近似)总 拦截器 ,就会走拦截器。
如果你在拦截中实现权限检查,要注意过滤这些对静态文件的请求。
如果你的DispatcherServlet拦截 .do这样的URL后缀,就不存上述问题了。还是有后缀方便

<url-pattern>/*</url-pattern>:
*.jsp 在内的所有文件都会调用,所以如果返回视图类型(return "xxx’)时,*.jsp被DispatcherServlet调用,编码复原GKB,则会乱码!(所以/*一般用于过滤器filter)

!!!

综上:
web项目springmvc.xml基本格式

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/jdbchttp://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-3.0.xsd
http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-3.0.xsd
http://www.springframework.org/schema/mvchttp://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

<!--扫描Controller,并将其生命周期纳入Spring管理-->
<context:annotation-config/>

<context:component-scan base-package="com.how2java.controller">
<context:include-filter type="annotation"
expression="org.springframework.stereotype.Controller"/>
</context:component-scan>

<!--注解驱动,以使得访问路径与方法的匹配可以通过注解配置-->
<mvc:annotation-driven />

<!--通过location,可以重新定义资源文件的位置-->
<mvc:resources mapping="/styles/**" location="/WEB-INF/resource/styles/"/>

<!--静态页面,如html,css,js,images可以访问-->
<mvc:default-servlet-handler />

<!-- 视图定位到/WEB/INF/jsp 这个目录下 -->
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass"
value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
</beans>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值