SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。

一.技术点

1.基础框架 ssm (spring+springmvc+mybatis)
2.数据库 mysql
3.前端框架 bootstrap快速搭建简洁美观的界面
4.项目的依赖管理maven
5.分页 pagehelper
6.逆向工程 mybatis Generator

欢迎加入软件开发QQ群675997991,喜欢创业热爱技术的小伙伴一起交流探讨!一起分享快乐

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第1张图片

二.项目的创建

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第2张图片

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第3张图片

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第4张图片

三.创建web.xml文件

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第5张图片

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第6张图片

四.引入bootstrap文件

https://v3.bootcss.com/getting-started/#download

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第7张图片

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第8张图片

SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。_第9张图片

五.pom.xml文件项目所需要的jar包


    
        org.springframework
        spring-webmvc
        5.1.5.RELEASE
    

     
    
        org.springframework
        spring-jdbc
        5.1.5.RELEASE
    

    
    
        org.springframework
        spring-aspects
        5.1.5.RELEASE
    

      
    
        org.mybatis
        mybatis
        3.5.0
    

    
    
        org.mybatis
        mybatis-spring
        2.0.0
    

    
    
        com.mchange
        c3p0
        0.9.5.3
    

    
    
        mysql
        mysql-connector-java
        8.0.15
    

    
    
        javax.servlet
        jstl
        1.2
    

    
    
        javax.servlet
        servlet-api
        2.5        
    

    
    
        junit
        junit
        4.12
        test
    
    
    
    
        org.mybatis.generator
        mybatis-generator-core
        1.3.7
    

 

 
   
       
       
            org.apache.maven.plugins
            maven-compiler-plugin
            3.8.0
           
                1.8
                1.8
                UTF-8
           

       

     

   

六.配置web.xml文件


    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">

    
    
    
        contextConfigLocation
        classpath:applicationContext.xml
    

    
    
        org.springframework.web.context.ContextLoaderListener
    

    
    
    
    
        springDispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:springmvc.xml
        

        1
    

    
    
        springDispatcherServlet
        /
    

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

        
            forceRequestEncoding
            true
        

        
            forceResponseEncoding
            true
        

    

    
    
        CharacterEncodingFilter
        /*
    

    
    
    
        HiddenHttpMethodFilter
        org.springframework.web.filter.HiddenHttpMethodFilter
    

    
        HiddenHttpMethodFilter
        /*
    

七.配置spring文件applicationContext.xml


    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    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.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd
        http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.3.xsd">

    
        
    

    
    
    
    
        
        
        
        
    

    
    
    
        
        
        
        
        
    

    
    
    
        
        
    

    
    
    
        
    

    
    
    
        
        
        
        
    

    
    
    
        
            
            
            
            
        

    

    
    

 

8.配置springmvc文件springmvc.xml


    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/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd
        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-4.3.xsd">

    
    
        
        
    

    
    
    
        
        
    

        
    
    
    
    
    

 

9.配置全局配置文件mybatis-config.xml文件


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

    
        
    

    
    
        
    

    
    
        
            
            
        

    


 

10.数据库连接配置db.properties 数据库8.0.11的连接

jdbc.jdbcUrl=jdbc:mysql://localhost:3306/online?useUnicode=true&characterEncoding=UTF-8
jdbc.driverClass=com.mysql.cj.jdbc.Driver
jdbc.user=root
jdbc.password=123

11.mybatis Generator配置文件


  PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN"
  "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">

    
        
            
        

        
                     connectionURL="jdbc:mysql://localhost:3306/online" userId="root"
            password="123">
        

        
            
        

        
                     targetProject=".\src\main\java">
            
            
        

        
        
            
        

        
                     targetPackage="com.star.dao" targetProject=".\src\main\java">
            
        


        
        


        

    

如果有不懂的技术问题欢迎加入软件开发QQ群675997991,有很多资深软件工程师为你解答,欢迎来技术交流探讨,项目合作!

 

下载地址:https://pan.baidu.com/disk/home#/all?vmode=list&path=%2Fssm%E6%A1%86%E6%9E%B6

你可能感兴趣的:(SSM入门级最完整的框架,可以直接拿来做项目用,非常适合新手。)