一.技术点
1.基础框架 ssm (spring+springmvc+mybatis)
2.数据库 mysql
3.前端框架 bootstrap快速搭建简洁美观的界面
4.项目的依赖管理maven
5.分页 pagehelper
6.逆向工程 mybatis Generator
欢迎加入软件开发QQ群675997991,喜欢创业热爱技术的小伙伴一起交流探讨!一起分享快乐
二.项目的创建
三.创建web.xml文件
四.引入bootstrap文件
https://v3.bootcss.com/getting-started/#download
五.pom.xml文件项目所需要的jar包
六.配置web.xml文件
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">
七.配置spring文件applicationContext.xml
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: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">
password="123">
下载地址:https://pan.baidu.com/disk/home#/all?vmode=list&path=%2Fssm%E6%A1%86%E6%9E%B6