Java技术分享:SpringBoot+mysql+...

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介: 放个效果图:

放个效果图:

准备项目

首先在MySql控制台输入一下sql语句创建student 数据库和student。

create databse student;
use student;
CREATE TABLE `student` (
  `stu_id` bigint(20) NOT NULL,
  `stu_name` varchar(45) DEFAULT NULL,
  `stu_sex` varchar(6) DEFAULT NULL,
  `date` varchar(45) DEFAULT NULL,
  `room` int(2) DEFAULT NULL,
  `acadimy` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`stu_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
123456789101112

SpringBoot

修改项目名称,点击next

这里直接点next

第一次打开会很慢
打开后删除用不到的文件

连接MySql

修改 application.properties 为 application.yml

插入一下代码
要修改的内容: url: jdbc:mysql://localhost:3306/student?useSSL=false&serverTimezone=UTC&&characterEncoding=utf-8中的student改为自己的数据库名称

spring:
  #配置 数据库
  datasource:
    username: root #用户名
    password: akbar #密码
    #下一行中student 改为 自己建的database 
    url: jdbc:mysql://localhost:3306/student?useSSL=false&serverTimezone=UTC&&characterEncoding=utf-8
    driver-class-name: com.mysql.cj.jdbc.Driver
#    配置JSP 路径
  mvc:
    view:
      prefix: /     
      suffix: .jsp
#mybatis-plus 打印日志 不需要手写sql 可查看把我们完成的sql 
mybatis-plus:
  configuration:
    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
# 设置端口号
server:
  port: 8001
12345678910111213141516171819202122

pom.xml 依赖包

<dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
<!--        MYsql -->
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
        </dependency>
<!-- mybatis-plus -->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.0.5</version>
        </dependency>
        <!-- 模板引擎 -->
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity-engine-core</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>org.freemarker</groupId>
            <artifactId>freemarker</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.tomcat.embed</groupId>
            <artifactId>tomcat-embed-jasper</artifactId>
        </dependency>
        <!-- servlet依赖的jar包start -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
        </dependency>
        <!-- servlet依赖的jar包start -->
        <!-- jsp依赖jar包start -->
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>javax.servlet.jsp-api</artifactId>
            <version>2.3.1</version>
        </dependency>
        <!-- jsp依赖jar包end -->
        <!--jstl标签依赖的jar包start -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
            <exclusions>
                <exclusion>
                    <groupId>org.junit.vintage</groupId>
                    <artifactId>junit-vintage-engine</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
    </dependencies>
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465

IDEA 链接数据库

IDEA 链接本地MySql数据库 (可以确定Mysql能正常访问 ,方便我们调试)
1.点击屏幕右侧Database
2.点击如下如的加号
3.DataSource
4.选择Mysql


**如上图所示表示成功连接,如果报错,检查用户名,密码,数据库名称 **

常见问题:时区(time zone)相关的报错Mysql控制台写下面的代码 重新Test Connection 。

set global time_zone='+8:00';
1

连接成功可以看到刚才见的数据库

为了方便我们测试点击加号“+”增加两条记录

增加完成后点击如下图DB的小图标(如果没看到鼠标移到大概位置会显示别出来)

代码生成器(不用我们自己写实体类,controller ,mapper,service等)

在下图目录下测试类新建一个类GenerateCode

代码如下:

需要修改的地方:
1.这里修改成你自己的

pg.setParent("com.example.xxxx");
1

2.改称自己的昵称

gc.setAuthor("艾科");  
1

3.把下边的student 改为自己建的数据库名称

dsc.setUrl("jdbc:mysql://localhost:3306/studentuseSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8");`
1

4.// 版本8.0以下去掉中间的cj

dsc.setDriverName("com.mysql.cj.jdbc.Driver"); //8.0
dsc.setDriverName("com.mysql.jdbc.Driver"); //8.0以下
12
  1. 数据库用户名和密码
dsc.setUsername("root");
 dsc.setPassword("root"); 
12

6.最后一个也是最重要的:这里是自己的数据不哭表

strategy.setInclude("student");
1

代码如下:

public class GenerateCode {
    public static void main(String[] args) {
        AutoGenerator ag=new AutoGenerator();
//         全局配置
        GlobalConfig gc=new GlobalConfig();
        String projectPath=System.getProperty("user.dir"); //获取项目根目录
        gc.setOutputDir(projectPath+"/src/main/java");  //设置输出目录
        gc.setAuthor("艾科");  //代码注解
        gc.setOpen(false); 
        gc.setFileOverride(false);  //是否覆盖(选否)不然会覆盖掉写过的代码
        gc.setServiceName("%sService"); 
        gc.setIdType(IdType.ID_WORKER);  // 可以根据需求改成IdType.AUTO 或者其他
        gc.setDateType(DateType.ONLY_DATE);  //Date 类型 只使用 java.util.date 代替
        ag.setGlobalConfig(gc);
//         设置数据源
        DataSourceConfig dsc=new DataSourceConfig();  //不要忘了修改数据库名称
        dsc.setUrl("jdbc:mysql://localhost:3306/student?useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT%2B8");
        dsc.setDriverName("com.mysql.cj.jdbc.Driver");//8.0用com.mysql.cj.jdbc.Driver 5.7用com.mysql.jdbc.Driver
        dsc.setUsername("root");
        dsc.setPassword("root");
        dsc.setDbType(DbType.MYSQL); //数据库类型
        ag.setDataSource(dsc);
//      包的配置
        PackageConfig pg=new PackageConfig();
//         pg.setModuleName("")
        pg.setParent("com.example.xxxx");  //把xxx 改成你自己的
        pg.setEntity("entity"); //实体类创建目录
        pg.setMapper("mapper");//mapper
        pg.setController("controller");//controoler
        ag.setPackageInfo(pg);
        StrategyConfig strategy = new StrategyConfig();
        strategy.setNaming(NamingStrategy.underline_to_camel); //代码风格驼峰结构
        strategy.setColumnNaming(NamingStrategy.underline_to_camel);
        strategy.setEntityLombokModel(false);
        strategy.setRestControllerStyle(true);
        strategy.setInclude("student");     // table 名称 ,根据table 名称生成 实体类,controller,service, mmapper  
     //   strategy.setInclude("student,user,class");     // 多个表用都逗号分开
        strategy.setControllerMappingHyphenStyle(true);
        ag.setStrategy(strategy);
        ag.execute();
    }
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748

改完了执行该类

MyBatis Plus

把下图目录中的xxxxApplication 加上 @MapperScan(“com.xxxx.xx.mapper”) mapper 包名r如下图所示(改成你自己的mapper 的包名)


**如果怕敲错可以复制StudentMpaper 中的packege **

@MapperScan("com.example.student.mapper")
@SpringBootApplication
public class StudentApplication {
    public static void main(String[] args) {
        SpringApplication.run(StudentApplication.class, args);
    }
}
123456789

MyBatis Plus 简单查询 (这个可以留到最后写作业的时候学 PS:肯定会用到)

@Autowired
      StudentMapper studentMapper;
    //        Mybatis plus 查询 student 表中的数据 返回List 类型
//    相当于:    SELECT stu_id,stu_name,stu_sex,date,room,acadimy FROM student
        List<Student> list = studentMapper.selectList(null);
        list.forEach(System.out::println);
//        通过id 查询  相当于:SELECT stu_id,stu_name,stu_sex,date,room,acadimy FROM student WHERE stu_id=1
        Student student1 = studentMapper.selectById(1);
//        条件查询 查询单个 相当于:SELECT stu_id,stu_name,stu_sex,date,room,acadimy FROM student WHERE stu_name = ? AND stu_sex = ?
        QueryWrapper<Student> wrapper = new QueryWrapper<>();
        wrapper.eq("stu_name", "小明");
        wrapper.eq("stu_sex", "男");
        Student student2 = studentMapper.selectOne(wrapper);
        //        条件查询 查询列表  相当于:SELECT stu_id,stu_name,stu_sex,date,room,acadimy FROM student WHERE stu_id > 1
        QueryWrapper<Student> wrapper1 = new QueryWrapper<>();
        wrapper1.gt("stu_id", 1);
        Student student3 = studentMapper.selectOne(wrapper1);
        SimpleDateFormat simpleDateFormat=new SimpleDateFormat("yyyy-MM-dd");
        String date=simpleDateFormat.format(System.currentTimeMillis());
//        insert 相当于 :
//        INSERT INTO student ( stu_id, stu_name, stu_sex, date, room, acadimy ) VALUES ( ?, ?, ?, ?, ?, ? ) 
//==> Parameters: 1280830334286217217(Long), aike(String), 男(String), 2020-07-08(String), 226(Integer), 计算机(String)
        Student student=new Student();
        student.setStuName("aike");
        student.setStuSex("男");
        student.setDate(date);
        student.setRoom(226);
        student.setAcadimy("计算机");
        studentMapper.insert(student);
1234567891011121314151617181920212223242526272829303132333435363738

更多复杂查询查询官网-----> MyBatis-Plus 官网

访问JSP页面

之前在pom.xml 中导入了相关的依赖包了

在mian 目录下创建 webapp 文件夹


在webapp 目录下创建 student.jsp文件

student.jsp文件内容如下 把下面的文件放到 student.jsp

<%@ page language="java" contentType="text/html; charset=utf-8"
         pageEncoding="utf-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>学生信息</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/css/bootstrap.min.css" rel="stylesheet">
    <script type="text/javascript">
        inserrtStudent= function()  {
            console.log("新增学生")
            alert("新增学生")
        }
        inserrtRoom = function () {
            alert("新增宿舍")
        }
        updateRoom =function ( ) {
            alert("修改宿舍")
        }
        updateRecord  =function (stu) {
            alert("查询记录:"${stu.stu_name})
        }
    </script>
</head>
<body>
<div class="row">
    <div class="col-md-6">
        <table class="table table-striped">
            <tr>
                <th>ID</th>
                <th>姓名</th>
                <th>性别</th>
                <th>学院</th>
                <th>入学时间</th>
                <th>宿舍号</th>
                <td><button class="btn btn-success" onclick="return inserrtStudent()" >新增学生</button></td>
                <td><button class="btn btn-success" onclick=" return inserrtRoom()">新增宿舍</button></td>
            </tr>
            <c:if test="${not empty students}">
                <c:forEach items="${students}" var="stu">
                    <tr>
                        <td>${stu.stuId}</td>
                        <td>${stu.stuName}</td>
                        <td>${stu.stuSex}</td>
                        <td>${stu.acadimy}</td>
                        <td>${stu.date}</td>
                        <td>${stu.room}</td>
                        <td><button class="btn btn-default" onclick="return updateRoom(${stu})">修改宿舍</button></td>
                        <td><button class="btn btn-default" onclick="return updateRecord()">查询记录</button></td>
                    </tr>
                </c:forEach>
            </c:if>
        </table>
    </div>
</div>
<script src="https://cdn.jsdelivr.net/npm/jquery@1.12.4/dist/jquery.min.js"></script>
<!-- 加载 Bootstrap 的所有 JavaScript 插件。你也可以根据需要只加载单个插件。 -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js"></script>
</body>
</html>
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970

StudentControoler 代码如下

注意:StudentController注解是 @Controller 而不是 RestController 。

/**
 *
 * @author 艾科
 * @since 2020-07-08
 */
@Controller
@RequestMapping("/student")
public class StudentController {
    @Autowired
    StudentMapper studentMapper;
    @RequestMapping(value = "findall")
    public String findAll(Model model) {
//        Mybatis plus 查询 student 表中的数据 返回List 类型
//    相当于:    SELECT stu_id,stu_name,stu_sex,date,room,acadimy FROM student
        List<Student> list = studentMapper.selectList(null);
        model.addAttribute("students", list);
        return "student";
    }
}
12345678910111213141516171819202122

运行结果(运行按钮在右上角):localhost:你的端口号/student/findall


相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
8天前
|
Java 开发者 Spring
java springboot监听事件和处理事件
通过上述步骤,开发者可以在Spring Boot项目中轻松实现事件的发布和监听。事件机制不仅解耦了业务逻辑,还提高了系统的可维护性和扩展性。掌握这一技术,可以显著提升开发效率和代码质量。
72 33
|
10天前
|
Java 开发者 Spring
java springboot监听事件和处理事件
通过上述步骤,开发者可以在Spring Boot项目中轻松实现事件的发布和监听。事件机制不仅解耦了业务逻辑,还提高了系统的可维护性和扩展性。掌握这一技术,可以显著提升开发效率和代码质量。
41 13
|
12天前
|
自然语言处理 Java 关系型数据库
Java mysql根据很长的富文本如何自动获取简介
通过使用Jsoup解析富文本并提取纯文本,然后根据需要生成简介,可以有效地处理和展示长文本内容。该方法简单高效,适用于各种应用场景。希望本文对您在Java中处理富文本并生成简介的需求提供实用的指导和帮助。
50 14
|
14天前
|
Java Spring
Java Spring Boot监听事件和处理事件
通过上述步骤,我们可以在Java Spring Boot应用中实现事件的发布和监听。事件驱动模型可以帮助我们实现组件间的松耦合,提升系统的可维护性和可扩展性。无论是处理业务逻辑还是系统事件,Spring Boot的事件机制都提供了强大的支持和灵活性。希望本文能为您的开发工作提供实用的指导和帮助。
67 15
|
13天前
|
自然语言处理 Java 关系型数据库
Java mysql根据很长的富文本如何自动获取简介
通过使用Jsoup解析富文本并提取纯文本,然后根据需要生成简介,可以有效地处理和展示长文本内容。该方法简单高效,适用于各种应用场景。希望本文对您在Java中处理富文本并生成简介的需求提供实用的指导和帮助。
31 9
|
16天前
|
Java 开发者 Spring
Java Springboot监听事件和处理事件
通过这些内容的详细介绍和实例解析,希望能帮助您深入理解Spring Boot中的事件机制,并在实际开发中灵活应用,提高系统的可维护性和扩展性。
49 7
|
1月前
|
NoSQL Java 关系型数据库
Liunx部署java项目Tomcat、Redis、Mysql教程
本文详细介绍了如何在 Linux 服务器上安装和配置 Tomcat、MySQL 和 Redis,并部署 Java 项目。通过这些步骤,您可以搭建一个高效稳定的 Java 应用运行环境。希望本文能为您在实际操作中提供有价值的参考。
147 26
|
1月前
|
存储 JavaScript 前端开发
基于 SpringBoot 和 Vue 开发校园点餐订餐外卖跑腿Java源码
一个非常实用的校园外卖系统,基于 SpringBoot 和 Vue 的开发。这一系统源于黑马的外卖案例项目 经过站长的进一步改进和优化,提供了更丰富的功能和更高的可用性。 这个项目的架构设计非常有趣。虽然它采用了SpringBoot和Vue的组合,但并不是一个完全分离的项目。 前端视图通过JS的方式引入了Vue和Element UI,既能利用Vue的快速开发优势,
127 13
|
1月前
|
JavaScript 安全 Java
java版药品不良反应智能监测系统源码,采用SpringBoot、Vue、MySQL技术开发
基于B/S架构,采用Java、SpringBoot、Vue、MySQL等技术自主研发的ADR智能监测系统,适用于三甲医院,支持二次开发。该系统能自动监测全院患者药物不良反应,通过移动端和PC端实时反馈,提升用药安全。系统涵盖规则管理、监测报告、系统管理三大模块,确保精准、高效地处理ADR事件。
|
Java 关系型数据库 MySQL
Spring Boot入门(2)使用MySQL数据库
介绍   本文将介绍如何在Spring项目中连接、处理MySQL数据库。   该项目使用Spring Data JPA和Hibernate来连接、处理MySQL数据库,当然,这仅仅是其中一种方式,你也可以使用Spring JDBC或者MyBatis.   Spring Data JPA是Spring Data的一个子项目,主要用于简化数据访问层的实现,使用Spring Data JPA可以轻松实现增删改查、分页、排序等。
2526 0

热门文章

最新文章