0 0

springMVC 中,<mvc:resources 标签无法使用5

<!--?xml version="1.0" encoding="UTF-8"?-->

 

<!-- 扫描控制器包-->

 

<!--<context:component-scan base-package="com.founder.controller" />-->
<?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:p="http://www.springframework.org/schema/p"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

	<!-- 扫描控制器包-->
	<!--<context:component-scan base-package="com.founder.controller" />-->
	
	<bean name="/test/hello" class="com.founder.controller.HelloworldController"></bean>
	
	<!-- 多方法解析器 -->
	<bean name="paramMethodResolver" class="org.springframework.web.servlet.mvc.multiaction.ParameterMethodNameResolver">
		<property name="paramName" value="action"></property>	
	</bean>
	
	<bean name="/test/multi" class="com.founder.controller.MultiController">
		<property name="methodNameResolver">
			<ref bean="paramMethodResolver"></ref>
		</property>
	</bean>
	
	<bean name="/test/static" class="com.founder.controller.StaticController">
		<property name="methodNameResolver">
			<ref bean="paramMethodResolver"></ref>
		</property>
	</bean>
	
	 <!-- 静态资源访问(不拦截此目录下的东西的访问) -->  
	 
    <mvc:resources location="/img/"  mapping="/img/**" />
	
	<!-- 视图解析器 -->
	<bean id="viewResolver" 
		  class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>

</beans>

 

<!-- 多方法解析器 -->

 

我用的spring版本为:spring-framework-3.2.8.RELEASE

现在无法调用mvc:resources  这个标签,好像<mvc>标签都不能使用

<!-- 静态资源访问(不拦截此目录下的东西的访问) -->

 

<!-- 视图解析器 -->

 

2014年11月11日 18:08

2个答案 按时间排序 按投票排序

0 0

http://www.springframework.org/schema/mvc  
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd

2014年11月13日 10:54
0 0

<beans xmlns="http://www.springframework.org/schema/beans" 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:p="http://www.springframework.org/schema/p" 
xmlns:context="http://www.springframework.org/schema/context" 
xsi:schemaLocation="http://www.springframework.org/schema/beans 
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
http://www.springframework.org/schema/context 
http://www.springframework.org/schema/context/spring-context-3.0.xsd">

加上mvc

2014年11月12日 11:41

相关推荐

    SpringMVC访问静态资源

    如果你想要自定义静态资源的路径,可以使用`&lt;mvc:resources&gt;`标签。例如,以下配置将映射`/resources/**`路径下的所有资源: ```xml &lt;mvc:resources mapping="/static/**" location="/WEB-INF/static/"/&gt; ``` 这...

    (springMVC访问js和css)[参考].pdf

    2. **使用Spring MVC的&lt;mvc:resources&gt;** 自Spring 3.0.4版本起,Spring MVC引入了`&lt;mvc:resources&gt;`元素,允许开发者指定静态资源的路径。例如,你可以将`/images/**`映射到实际的`/images/`目录,这样所有以`/...

    SpringMVC访问图片

    在Spring MVC中,静态资源通常位于`src/main/webapp`目录下的`WEB-INF`外部,如`/resources`或`/static`子目录。当请求路径与这些目录中的文件匹配时,Spring MVC会自动处理并返回静态资源。例如,如果图片位于`/...

    SpringMVC核心配置文件示例.rar

    Spring MVC支持声明式事务管理,这可以在`&lt;tx:annotation-driven&gt;`标签中配置,使得@Transactional注解能驱动事务处理: ```xml &lt;tx:annotation-driven transaction-manager="transactionManager"/&gt; ``` 其中,...

    ssm框架整合的第一个阶段:完成了springmvc框架的配置和spring框架的配置

    在SpringMVC的配置中,我们通常会创建一个`servlet-context.xml`或在Spring Boot中使用`WebMvcConfigurer`配置类。这个配置文件或类会定义DispatcherServlet的行为,包括处理器映射器(HandlerMapping)、处理器...

    非注解方式配置springmvc

    通过`&lt;mvc:resources&gt;`标签,可以映射静态资源,如CSS、JavaScript文件,避免被DispatcherServlet拦截。 9. **国际化支持**: 使用`&lt;bean&gt;`标签配置MessageSource,结合`@RequestParam`或`@ModelAttribute`中的`...

    springmvc入门小项目:CRUD

    在这个"springmvc 入门小项目:CRUD"中,我们将探讨如何使用 SpringMVC 实现基本的数据库操作,即创建(Create)、读取(Read)、更新(Update)和删除(Delete)数据。 1. **SpringMVC 框架基础** - **...

    SpringMVC+Hibernate全注解整合

    &lt;mvc:resources mapping="/js/**" location="/js/" cache-period="31556926"/&gt; &lt;mvc:resources mapping="/resource/**" location="/resource/" /&gt; &lt;mvc:resources mapping="/jsp/**" location="/jsp/" /&gt; &lt;/...

    Spring MVC Locale 的使用 中文 英文 等语言 切换

    为了在视图层显示这些本地化信息,我们可以在JSP页面中使用Spring的`fmt`标签库: ```jsp &lt;%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %&gt; &lt;fmt:setLocale value="${pageContext.request....

    springmvc静态资源访问

    - **解决方法**:在Spring配置文件中添加`&lt;mvc:default-servlet-handler/&gt;`标签。该标签告诉Spring MVC框架,如果找不到任何匹配的处理器,则将请求转发给Web服务器的默认Servlet。这意味着对于那些未被Spring MVC...

    springMVC教程

    - `&lt;mvc:resources&gt;`:映射静态资源,如CSS、JavaScript文件,避免与Controller冲突。 - `&lt;bean&gt;`:定义自定义拦截器,用于在请求处理前后的扩展操作。 **快速入门** 要快速启动一个SpringMVC项目,你需要: 1. ...

    详解SpringMVC拦截器(资源和权限管理)

    SpringMVC拦截器是Spring MVC框架中...通过`&lt;mvc:default-servlet-handler&gt;` 或 `&lt;mvc:resources&gt;` 的使用,我们可以确保静态资源的正常访问。而自定义拦截器则让我们能够实现更高级的权限控制逻辑,增强系统的安全性。

    SpringMVC访问静态资源的三种方式小结

    ### 方案二:使用Spring MVC的`&lt;mvc:resources&gt;`标签 从Spring 3.0.4版本开始,Spring MVC引入了`&lt;mvc:resources&gt;`标签,允许开发者明确地指定静态资源的映射和位置。例如: ```xml &lt;mvc:resources mapping="/...

    SpringMVC架构的项目 js,css等静态文件导入有问题的解决方法

    为了解决这个问题,SpringMVC从3.0.5版本开始引入了 `&lt;mvc:resources&gt;` 标签,专门用于处理静态资源。这个标签允许我们在配置文件中指定静态资源的映射路径和实际存储位置。例如: ```xml &lt;!-- 配置静态资源跳过...

    Java SSM框架如何配置静态资源加载

    &lt;mvc:resources location="/images/" mapping="/images/"/&gt; &lt;mvc:resources location="/image/" mapping="/image/"/&gt; &lt;mvc:resources location="/js/" mapping="/js/"/&gt; &lt;mvc:resources location="/css/" mapping="/...

    Spring3_MVC_基础实践之路

    为了避免拦截静态资源(如图片、JavaScript、CSS),可以在`web.xml`中配置过滤器或者在Spring MVC配置文件中设置`&lt;mvc:resources&gt;`标签。 ```xml &lt;mvc:resources mapping="/resources/**" location="/resources/"/...

    springMVC的深入研究

    通常的做法是在`web.xml`中设置相关的配置,或者在Spring的配置文件中使用`&lt;mvc:resources&gt;`标签。 #### 八、请求映射到具体方法 Spring3 MVC通过`@RequestMapping`注解支持请求映射。开发者可以在控制器类或方法...

    SpringMVC入门

    - **启用注解驱动**:使用`&lt;mvc:annotation-driven/&gt;`来启用Spring MVC的注解功能。 - **配置视图解析器**:定义视图解析器`InternalResourceViewResolver`来处理视图名与实际视图文件之间的映射关系。 #### 三、...

    springmvc、spring、mybatis的resources配置文件和web.xml

    在Java Web开发中,Spring MVC、Spring和MyBatis是三个非常重要的框架,它们共同构建了一个灵活、高效的应用架构。这些框架的配置文件对于整个应用的运行至关重要,下面将详细讲解它们各自的资源配置以及与`web.xml`...

    config_my_springmvc

    8. **资源处理**:`&lt;mvc:resources&gt;`元素可以用来映射静态资源,如CSS、JavaScript和图片文件,确保它们能够被正确地访问。 9. **异常处理**:通过`@ExceptionHandler`注解,可以在控制器中捕获并处理特定的运行时...

Global site tag (gtag.js) - Google Analytics