上一篇讲述了Spring mvc 中常用的几个注解标示,这章中主要讲述spring mvc 的一些配置和应该注意的地方,已经试图,模板的使用。
首先需要在Web.xml 中添加spring 的加载器,在spring mvc 中其实你不写ContextLoaderListener 这个 跑起来基本上是没什么问题的,但是如果你要对一些Bean 的加载进行监听的话,建议你还是老老实实的加上这个类。多余的就不说了,请看Xml内容:
<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"> <display-name>springmvc</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> </welcome-file-list> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:/springContentConfig.xml</param-value> </context-param> <context-param> <param-name>log4jConfigLocation</param-name> <param-value>classpath:/log4j.properties</param-value> </context-param> <listener> <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> </listener> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <filter> <filter-name>CharacterEncodingFilter</filter-name> <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> </init-param> </filter> <filter-mapping> <filter-name>CharacterEncodingFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> <servlet> <servlet-name>golfing</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:/springMvcConfig.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>golfing</servlet-name> <url-pattern>/app/*</url-pattern> </servlet-mapping> </web-app>
在此文件中我们定义了spring 配置的文件springContentConfig.xml,MVC Controller 的配置文件springMvcConfig.xml,如果没有指定此文件名称,spring就会按照servelt 的名称去找该配置文件。另外此xml中还配置了转码一个类以及log4j的配置文件
下来我们首先看一下 spring 的配置文件springContentConfig.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: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"> <import resource="classpath:/DBConfig.xml"/> <context:component-scan base-package="com.my.springmvc"> <context:exclude-filter type="regex" expression="com.my.springmvc.web.*"/> </context:component-scan> <bean class="com.my.springmvc.util.SpringBeanInitProcesser" /> <bean class="com.my.springmvc.util.SpringContentUtil" /> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"> <property name="maxUploadSize" value="-1" /> <property name="defaultEncoding" value="UTF-8" /> </bean> <bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"> <property name="defaultEncoding" value="UTF-8"></property> <property name="host" value="smtp.sina.cn"/> <property name="username" value="****"></property> <property name="password" value="***"></property> </bean> <bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean"> <property name="velocityProperties"> <value> resource.loader=class class.resource.loader.class=org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader </value> </property> </bean> </beans>
此处(<import resource="classpath:/DBConfig.xml"/>)我们引用了DB的配置信息xml文件,这个后面再说。
<context:component-scan/>配置了扫描的注解的范围。
<context:exclude-filter/>配置扫描自动校验注解的范围
<bean class="com.my.springmvc.util.SpringBeanInitProcesser" />这个配置的是监视spring 加载bean的一个类,此类需要实现接口 org.springframework.beans.factory.config.BeanPostProcessor
<bean class="com.my.springmvc.util.SpringContentUtil" />该类是一个工具类,可以自由的拿取spring 中的bean,此类需要实现接口org.springframework.context.ApplicationContextAware
下面几个就不在详解了,是配置上传文件,模板,还有邮件的一些配置。
下来看看我这个里面DB是怎么配置的DBConfig.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: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:property-placeholder location="classpath:/jdbc.properties"/> <bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"> <property name="driverClassName"><value>${jdbc.driver}</value></property> <property name="url"><value>${jdbc.url}</value></property> <property name="username"><value>${jdbc.username}</value></property> <property name="password"><value>${jdbc.password}</value></property> </bean> <bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"> <property name="dataSource" ref="dataSource"></property> </bean> </beans>
很简单 呵呵这个里面就是对配置文件jdbc.properties内容的设置
spring 可以说对后台的东西都over了,下面看看springMvcConfig.xml里面如何配置mvc的东西
<?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:context="http://www.springframework.org/schema/context" xmlns:mvc="http://www.springframework.org/schema/mvc" 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 http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.1.xsd"> <mvc:annotation-driven /> <context:component-scan base-package="com.my.springmvc.web"/> <mvc:resources mapping="/static/**" location="/static/"/> <bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/> <bean id="exceptionResolver" class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver"> <property name="defaultErrorView"> <value>exception/exception</value> </property> <property name="exceptionMappings"> <props> <prop key="java.sql.SQLException">exception/sqlException</prop> <prop key="java.lang.RuntimeException">exception/runException</prop> </props> </property> </bean> <bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"> <property name="order" value="0" /> <property name="cacheSeconds" value="0" /> <property name="webBindingInitializer"> <bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer" > <property name="validator" ref="validator"/> </bean> </property> <property name="messageConverters"> <list> <bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/> <bean class="org.springframework.http.converter.StringHttpMessageConverter"/> <bean class="org.springframework.http.converter.FormHttpMessageConverter"/> <bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter"/> <bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" > </bean> </list> </property> </bean> <bean class="org.springframework.web.servlet.view.XmlViewResolver"> <property name="location"> <value>classpath:/com/my/springmvc/spring-excel-views.xml</value> </property> <property name="order" value="0"></property> </bean> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/> <property name="prefix" value="/views/"/> <property name="suffix" value=".jsp"/> <property name="order" value="1"></property> </bean> </beans>
前面几个相同的我就不说了,<mvc:resources mapping="/static/**" location="/static/"/>这个是配置一些静态资源的,这样配置之后,请求这些东西的时候spring 就不用进行过滤了。
<bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
这个是用来校验的。
<bean id="exceptionResolver" />这个是来配置出现异常时呈现给用户的页面
<bean class="org.springframework.web.servlet.view.XmlViewResolver">
<property name="location">
<value>classpath:/com/my/springmvc/spring-excel-views.xml</value>
</property>
<property name="order" value="0"></property>
</bean>
这个是来配置试图的,我这有两个视图的配置
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> <bean id="excelSystemMenuView" class="com.my.springmvc.web.view.ExcelSystemMenuView"> </bean> <bean id="pdfSysmenuView" class="com.my.springmvc.web.view.PDFSystemMenuView"></bean> </beans>
一个是Excel 的,一个是PDF的
在mvc 那个文件中还有两个比较重要的配置
1。<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter">
<property name="order" value="0" />
<property name="cacheSeconds" value="0" />
<property name="webBindingInitializer">
<bean class="org.springframework.web.bind.support.ConfigurableWebBindingInitializer" >
<property name="validator" ref="validator"/><--前面配置的validate就是在这里使用的-->
</bean>
</property>
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/>
<bean class="org.springframework.http.converter.StringHttpMessageConverter"/>
<bean class="org.springframework.http.converter.FormHttpMessageConverter"/>
<bean class="org.springframework.http.converter.xml.SourceHttpMessageConverter"/>
<bean class="org.springframework.http.converter.json.MappingJacksonHttpMessageConverter" ><!--这一堆都是配置信息转换的-->
</bean>
</list>
</property>
</bean>
2。
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>
<property name="prefix" value="/views/"/>
<property name="suffix" value=".jsp"/>
<property name="order" value="1"></property>
</bean>
这一段是视图解析,prefix 指定以项目目录为根的相对路径,suffix 指定 视图的文件的后缀。这个你可以配置多个,在代码中具体进行调用。
相关推荐
Spring MVC 是一个基于 Java 的轻量级 Web 开发框架,它是 Spring 框架的重要组成部分。Spring MVC 提供了一个模型-视图-控制器(MVC)架构,使得开发者可以更方便地构建可维护的、高性能的 Web 应用程序。在你上传...
Spring MVC 是一个基于Java的轻量级Web应用框架,它为构建RESTful应用程序提供了强大的支持。这个框架是Spring生态系统的一部分,允许开发者通过Model-View-Controller(MVC)架构模式来分离应用程序的不同部分,...
- 掌握Spring配置文件的编写,理解Spring MVC与Spring之间的关系。 3. **掌握Spring MVC框架**: - Spring MVC是一个基于Spring的简单Web框架,它实现了MVC架构模式。 - 学习如何构建Controller类处理HTTP请求。...
【源码】mysql版本_spring3.0 系统模块 1. 组织管理:角色管理,分角色组和成员,有组权限和成员权限。 2. 系统用户:对各个基本的组会员增删改查,单发、群发邮件短信,导入导出excel表格,批量删除 3. 会员管理:...
spring+spring mvc+hibernate+easyui+jquery+ehcache http://localhost:8080/admin/index 账号HBU001 111111 管理员admin admin 注意事项 1.系统的默认用户超级管理员:admin(密码:admin)。系统的操作:用户超级...
6. 配置Spring的事务管理,可以是编程式或声明式的。 7. 将Struts1和Spring的配置信息整合到Web应用程序的`web.xml`中。 通过这样的配置,开发者可以获得一个高效、可维护的Java Web应用程序。不过,值得注意的是,...
【源码】oracle版本_spring3.0 系统模块 1. 组织管理:角色管理,分角色组和成员,有组权限和成员权限。 2. 系统用户:对各个基本的组会员增删改查,单发、群发邮件短信,导入导出excel表格,批量删除 3. 会员管理:...
1、有如下一个订单信息页面order.jsp(置于/WEB-INF/jsp目录下),按以下步骤实现一个使用POJO...(5)配置springmvc-config.xml文件。 (6)创建一个result.jsp结果页面(置于/WEB-INF/jsp目录下),用于显示接收到订单信息。
Spring框架是Java开发中最受欢迎的轻量级框架之一,它为构建企业级应用程序提供了全面的编程和配置模型。4.3.29是Spring框架的一个稳定版本,它包含了多个核心模块和其他相关组件,以支持现代Java应用的开发。在这个...
10. **模块化设计**: 遵循 Spring 的模块化设计原则,将 Netty 的不同组件(如编解码器、处理器等)作为独立的模块,便于复用和维护。 通过以上这些知识点的整合,我们可以构建出一个高效、灵活且易于管理的 Netty-...
【标题】"基于Springmvc的图书管理系统源码.zip"揭示了这是一个使用Spring MVC框架开发的图书管理系统的源代码。Spring MVC是Spring框架的一个模块,专为构建Web应用程序提供模型-视图-控制器(MVC)架构。这个系统...
当一个请求到达时,Tomcat会根据web.xml或Spring Boot的自动配置将请求路由到适当的DispatcherServlet,接着DispatcherServlet使用Spring MVC的机制(包括拦截器和AOP)来处理请求。 总的来说,"spring-Interceptor...
- **springmvc-servlet.xml**:Spring MVC的配置文件,主要配置了处理器映射器、视图解析器以及Controller的扫描路径等。 4. **使用注解配置**:在Spring MVC中,我们可以使用@Controller、@Service、@Repository...
Spring Framework 是一个广泛使用的Java应用程序开发框架,它提供了一个全面的编程和配置模型,促进了良好的编程实践和结构化的应用开发。BOM(Bill of Materials)是Maven中的一个概念,用于管理项目的依赖版本。在...
Spring MVC 和 Spring 框架是 Java Web 开发中的核心组件,它们共同构建了一个强大的、模块化的应用程序架构。Spring MVC 是 Spring 框架的一部分,专门用于处理 Web 请求和响应,而 Spring 框架则提供了依赖注入、...
**通过`import`标签引入其他配置文件**:在`spring-mvc.xml`中使用`<import resource="user_spring.xml"/>`引入其他配置文件。 2. **在`web.xml`中配置**:可以在`web.xml`中指定`contextConfigLocation`参数来...
3. 配置Spring MVC:创建Spring MVC的配置文件,设置前端控制器DispatcherServlet、视图解析器、拦截器等。 4. 配置MyBatis:编写mybatis-config.xml配置文件,指定数据源、事务管理器、Mapper扫描路径等。编写...
在Spring 2.0中,Spring MVC作为Web层的一个关键组件,提供了一种模型-视图-控制器(MVC)架构模式的实现。开发者可以使用Spring MVC轻松构建RESTful服务,处理HTTP请求,并将结果返回给客户端。Controller接口或@...