SSM 框架整合

SSM 框架 整合 大体
配置web.xml文件

<!-- 读取 applicationContext-*.xml 配置文件 -->

  <context-param>
		<param-name>contextConfigLocation</param-name>
		<param-value>classpath:applicationContext-jdbc.xml</param-value>
  </context-param>

<!-- 设置编码格式 -->

  <filter>
    <filter-name>encodingFilter</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>encodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
  </filter-mapping>

<!-- 识别 springmvc.xml 文件 -->

  <servlet>
    <servlet-name>springmvc</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
      <param-name>contextConfigLocation</param-name>
      <param-value>classpath:springmvc-servlet.xml</param-value>
    </init-param>
<!-- 标记容器是否在启动的时候就加载这个servlet , 正数越大 优先级越高 -->
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping>
    <servlet-name>springmvc</servlet-name>
    <url-pattern>/</url-pattern>
  </servlet-mapping>

<!-- org.springframework.web.context.ContextLoaderListener类实现了javax.servlet.ServletContextListener接口。ServletContextListener接口能够监听ServletContext对象的生命周期,因为每个web应用仅有一个ServletContext对象,故实际上该接口监听的是整个web应用。 -->

  <listener>
	<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  </listener>

配置 applicationContext.xml 文件

1.读取 dataBase.properties 文件

<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
	<property name="location">
		<value>classpath:database.properties</value>		
	</property>
</bean>

2.连接数据库

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
	<property name="driverClassName" value="${driver}"></property>
	<property name="url" value="${url}"></property>
	<property name="username" value="${username}"></property>
	<property name="password" value="${password}"></property>
</bean>

3.声明事务 , 配置属性连接 dataSource 数据库
事务:在对数据库进行操作时,完成就一起完成,不完成就一起不完成
四大特性:原子性,隔离性,持久性,一致性

<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
	<property name="dataSource" ref="dataSource"/>
</bean>

<tx:advice id="txAdvice" transaction-manager="txManager">
		<tx:attributes>
			<tx:method name="get*" propagation="SUPPORTS"/>
			<tx:method name="add*" propagation="REQUIRED"/>
			<tx:method name="del*" propagation="REQUIRED"/>
			<tx:method name="up*" propagation="REQUIRED"/>
		</tx:attributes>
</tx:advice>

4.配置 sqlSession 工厂 引用数据源组件 加载 mybatis-config.xml 文件

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 引用数据源组件 -->
	<property name="dataSource" ref="dataSource"></property>
<!-- 引用mybatis配置文件 -->
	<property name="configLocation" value="classpath:mybatis-config.xml"></property>
</bean>

5.扫描 mapper 文件

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
	<property name="basePackage" value="com.smbms.dao"></property>
</bean>

配置 mybatis-config.xml 文件

1.声明实体类

<configuration>
	<typeAliases>
	   <package name="com.smbms.pojo"/>
	</typeAliases>
   </configuration>

配置 springMvc.xml 文件

1.配置<mvc:annotation-driven /> 标签 , 实现对注解的支持 , 配置消息转化器

 <mvc:annotation-driven>
    	<mvc:message-converters>
    		<bean class="org.springframework.http.converter.StringHttpMessageConverter">
    			<property name="supportedMediaTypes">
    				<list>
    					<value>application/json;charset=UTF-8</value>
    				</list>
    			</property>
    		</bean>
    	</mvc:message-converters>
    </mvc:annotation-driven>

2.配置<mvc:resources mapping="/statics/**" location="/statics/"/>标签 配置静态文件访问

 <mvc:resources mapping="/statics/**" location="/statics/" />

3.配置 支持文件上传

 <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
   		 <property name="maxUploadSize" value="5000000"/>
   		 <property name="defaultEncoding" value="UTF-8"/>
    </bean>

4.配置视图解析器

<bean class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
		<property name="favorParameter" value="true"></property>
	 	<property name="defaultContentType" value="text/html"></property>
	 	<property name="mediaTypes">
	 		<map>
	 			<entry key="html" value="text/html;charset=UTF-8"></entry>
	 			<entry key="json" value="application/json;charset=UTF-8"></entry>
	 			<entry key="xml" value="application/xml;charset=UTF-8"></entry>
	 		</map> 
	 	</property>
	 	<property name="viewResolvers">
	 		<list>
	 			<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
	 				<property name="prefix" value="/WEB-INF/jsp/"/>
					<property name="suffix" value=".jsp"/>
	 			</bean>
	 		</list>
	 	</property>
	</bean>

5.配置日期格式转化

<bean id="myConversionService" class="org.springframework.context.support.ConversionServiceFactoryBean">
    	<property name="converters">
    		<list>
    			<bean class="com.smbms.tools.StringToDateConverter">
    				<constructor-arg type="java.lang.String" value="yyyy-MM-dd"></constructor-arg>
    			</bean>
    		</list>
    	</property>
    </bean>

6.配置拦截器 <mvc:interceptors >

<mvc:interceptors>
    	<mvc:interceptor>
    		<mvc:mapping path="/sys/**"/>
    		<bean class="com.smbms.interceptor.SysInterceptor"></bean>
    	</mvc:interceptor>
    </mvc:interceptors>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值