基于ssm三大框架实现登录注册功能的配置过程

第一步  ssm jar包整合,本人的下载资源里面有整合的jar包

主要有:ssm整合jar包 ,jstl,数据库连接,josn junit,等jar包

基于ssm三大框架实现登录注册功能的配置过程_第1张图片


第二步,建立各类包和配置文件,尽量把各个配置文件分开,统一放在一个自己建立的config文件夹中,容易区分,后面也好检查更改

基于ssm三大框架实现登录注册功能的配置过程_第2张图片

主要配置,mybatis,spring—mybatis,和springmvc,以及web.xml和jdbc(数据库连接信息)

jdbc配置文件

jdbc.DriverClassName=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql://127.0.0.1:3306/hello
jdbc.username=root
jdbc.password=518189

mybatis配置文件

说明:如何单独使用mybatis时,mybatis配置文件中需要配置环境,也就是标签里面的信息

ssm中这些事,由spring来做,在mybatis中只需要类的别名,用法如下

   
            设置这个包下面的所有类的别名  默认是类名小写,也就是这个包里面所有的类就可以使用类名的小写代替自己了
            "cn.itsource.domain"/>  
            设置单个类的别名       
       alias:取的别名    
      type:这个别名所对应的Java类    别名使用的时候与大小写无关
        "Product" type="cn.itsource.domain.Product"/>  
    
总结;

typeAlias:为某个java类起名②package:为某个包下所有类批量起别名(常用)

 ③@Alias:批量起别名的情况下使用,为某个类型指定新的别名(避免别名重复)

配置文件

PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">




    

spring—mybatis配置文件,里面包含了spring和mybatis的整合配置

我们知道单独使用mybatis时,需要底下这样来,来创建 SqlSessionFactoryBuilder()实现一个会话,调用mapper操作数据库,现在通过spring的控制反转,让spring来做,但是需要配置。

       InputStream inputStream = Resources.getResourceAsStream("SqlMapConfig.xml");
        SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(inputStream);
        SqlSession session = sessionFactory.openSession();
        UserMapper mapper = session.getMapper(UserMapper.class);
        mapper.deleteStudent("1007");
        session.commit();//提交

spring—mybatis配置文件

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:mvc="http://www.springframework.org/schema/mvc"

 xmlns:context="http://www.springframework.org/schema/context"

 xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:tx="http://www.springframework.org/schema/tx"

    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd ">

    
    

    
            destroy-method="close">
        
        
        
        
    

    
    
        
        
        

        

          

  "classpath:cn/edu/ssm/mapper/*.xml">

    
    
    
        
               
    

springmvc配置文件

由于springmvc就属于spring所以不需要整合,之前怎么配置,现在还怎么配置

 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xmlns:mvc="http://www.springframework.org/schema/mvc"

xmlns:context="http://www.springframework.org/schema/context"

 xmlns:aop="http://www.springframework.org/schema/aop"

xmlns:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/aop
        http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
        http://www.springframework.org/schema/tx
        http://www.springframework.org/schema/tx/spring-tx-3.2.xsd">

    
        
    
    
            class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        
        
        
        
    
       

web.xml

web.xml需要把spring的配置文件和springmvc的配置文件加载进来。


    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_3_0.xsd"
    id="WebApp_ID" version="3.0">
   
    
        contextConfigLocation
        
            classpath:spring/spring-mybatis.xml
        

    

    
    
        org.springframework.web.context.ContextLoaderListener
    

    
    
        dispatchServlet
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:spring/springmvc.xml
        

        1
    

    
    
        dispatchServlet
        /
    


    
        CharacterEncodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            utf-8
        

    

    
        CharacterEncodingFilter
        /*
    

以上就是ssm配置文件的全过程,由于源代码太多就不在这一一添加了,只要配置文件会配置,注解会使用,其实ssm很简单的。



你可能感兴趣的:(软件开发)