配置SSM框架

在pom.xml中配置SSM所需架包

Spring-context
Spring-core
Spring-beans
spring-web
spring-webmvc
Mybatis
mybaits-spring
Jstl
mysql-connector-java
Aspectjweaver
Log4j
slf4j-api
spring-tx
spring-jdbc
c3p0

在这里插入图片描述

准备所需的配置文件

  • web.xml
    编码过滤器CharacterEncodingFilter
    Mvc核心控制器 dispatcherServlet
    ContextLoaderListener 上下文加载监听器
    ContextConfigLocation 指定Spring配置文件路径
<?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" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>egovernment</display-name>
  
	  <!-- 编码过滤器 -->
	    <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>
	  </filter>
	  <filter-mapping>
	    <filter-name>encodingFilter</filter-name>
	    <url-pattern>/*</url-pattern>
	  </filter-mapping>
	  
	  <!-- springMVC核心控制器  -->
	  <servlet>
	    <servlet-name>dispatcherServlet</servlet-name>
	    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
	    
	    <!--指定springMVC配置文件  -->
	    <init-param>
	      <param-name>contextConfigLocation</param-name>
	      <param-value>classpath:spring-mvc.xml</param-value>
	    </init-param>
	    <load-on-startup>1</load-on-startup>
	  </servlet>
	  
      <servlet-mapping>
	    <servlet-name>dispatcherServlet</servlet-name>
	    <url-pattern>*.action</url-pattern>
	  </servlet-mapping>
  	
	  	<!--配置适配器Spring  -->
	 <listener>
	    <description>启动spring容器</description>
	    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	  </listener>
  <context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>classpath:applicationContext.xml</param-value>
  </context-param>
  
  
  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
    <welcome-file>index.htm</welcome-file>
    <welcome-file>index.jsp</welcome-file>
    <welcome-file>default.html</welcome-file>
    <welcome-file>default.htm</welcome-file>
    <welcome-file>default.jsp</welcome-file>
  </welcome-file-list>
</web-app>

注意指定SpringMVC配置文件,需要在相应路径下新建

  • Spring配置文件:applicationContext.xml
    数据源配置
    注册sqlSessionFactoryBean
    Mapper扫描器
<?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.xsd
        http://www.springframework.org/schema/context 
        http://www.springframework.org/schema/context/spring-context.xsd
        http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc.xsd">

    <!-- 启动自动扫描 -->
    <context:component-scan base-package="com.medcare.older.controller" />
    <!-- 注册MVC注解驱动 -->
    <mvc:annotation-driven />
    <!-- 静态资源可访问的设置方式 -->
    <mvc:default-servlet-handler />
    <!-- 配置视图解析器,可以显式设置,也可以不设置,不设置会依据SpringMVC的默认设置 -->
    <bean id="viewResolver"
        class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/" />
        <property name="suffix" value=".jsp" />
    </bean>
    
    <!-- 定义文件上传解析器 -->    
    <bean id="multipartResolver"    
        class="org.springframework.web.multipart.commons.CommonsMultipartResolver">    
        <!-- 设定默认编码 -->    
        <property name="defaultEncoding" value="UTF-8"></property>    
        <!-- 设定文件上传的最大值 -->    
        <property name="maxUploadSize" value="99999999"></property>    
    </bean>
    
    <mvc:resources location="/upload/" mapping="/upload/**"/>
</beans>
  • Log4j.properties //在控制台显示当前日志
#USE THIS SETTING FOR OUTPUT MYBATIS`s SQL ON THE CONSOLE
log4j.rootLogger=DEBUG, Console

#Console
log4j.appender.Console=org.apache.log4j.ConsoleAppender
log4j.appender.Console.layout=org.apache.log4j.PatternLayout
log4j.appender.Console.layout.ConversionPattern=%d [%t] %-5p [%c] - %m%n

log4j.logger.java.sql.ResultSet=INFO
log4j.logger.org.apache=INFO
log4j.logger.java.sql.Connection=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG
  • Mybatis-config.xml //日志的设置和实体类别名的设置
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
	<!-- 设置日志以LOG4J进行显示 -->
	 <settings>
        <setting name="logImpl" value="LOG4J"/>
    </settings>
    
    <!-- 设置类的别名 -->
    <typeAliases>
        
		<typeAlias type="" alias="u"/>
		
    </typeAliases>
</configuration>

配置时出现的问题

Referenced file contains errors (http://
www.springframework.org/schema/context/spring-
context.xsd). For more information, right click on the message
in the Problems View and select "Show Details…
解决办法:Project->clean

配置完成

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值