参考文件夹结构
language-bash1 2 3 4 5 6 7
| MyTest01 ├── javaDocker.sh ├── mysqlDocker.sh ├── MySQL │ └── data ├── SpringBoot └── MyWeb01-SpringBoot-0.0.1-SNAPSHOT.jar
|
一、起手式:配置环境
1.镜像
拉取以下两个镜像
language-bash1 2
| docker pull openjdk:17 docker pull mysql:8
|
二、启动Mysql容器
在mysqlDocker.sh
脚本写入以下内容,然后bash运行
脚本意思是将mysql数据映射到主机并设置密码为xxxx,
language-bash1 2 3 4 5 6 7 8 9 10
| #!/bin/bash
containerName="MySQLTest01" MySQLData="/root/MyTest01/MySQL/data"
docker run -d --name "$containerName" \ -p 3306:3306 \ -v "$MySQLData":/var/lib/mysql \ -e MYSQL_ROOT_PASSWORD=xxxx \ mysql:8
|
在云服务器安全组开放入站规则3306
端口
此时可以用你喜欢的数据库连接软件来连接这个mysql容器,并创建test01
数据库和一张student
表,结构随意,随便插入几条数据。
三、配置SpringBoot容器并简单测试
添加如下配置到application.yml
补充你的云服务器IP和刚才设置的密码
language-yaml1 2 3 4 5 6
| spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://xxx.xxx.xxx.xxx:3306/test01?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC username: root password: xxxx
|
写一个简单的测试如下
language-java1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| package com.example.myweb01springboot.controller;
import org.springframework.beans.factory.annotation.Autowired; import org.springframework.jdbc.core.JdbcTemplate; import org.springframework.web.bind.annotation.CrossOrigin; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController;
import javax.sql.DataSource; import java.sql.SQLException;
@RestController @RequestMapping("/Home") @CrossOrigin(origins = "*", allowedHeaders = "*") public class TestController { @Autowired DataSource dataSource;
@Autowired JdbcTemplate jdbcTemplate; @GetMapping("/Kmo") public String test() throws SQLException { System.out.println("默认数据源为:" + dataSource.getClass()); System.out.println("数据库连接实例:" + dataSource.getConnection()); //访问数据库user表,查询user表的数据量 Integer i = jdbcTemplate.queryForObject("SELECT count(*) from `student`", Integer.class); System.out.println("user 表中共有" + i + "条数据。");
return "Success!"+i; } }
|
然后本地运行打开浏览器访问localhost:8081/Home/Kmo
验证是否从远程数据库取得连接。
然后在application.yml
中将url的服务器IP改成db
language-yaml1 2 3 4 5 6
| spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://db:3306/test01?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC username: root password: xxxx
|
然后maven打包成jar,参考文件夹结构,将jar放入指定位置。
将以下内容写入javaDocker.sh
脚本并bash运行
脚本意思是,向名为MySQLTest01的容器建立网络链接(单向的),它的名字(IP,主机名)为db,于是此容器可以通过db:3306访问MySQLTest01容器的mysql服务。
language-bash1 2 3 4 5 6 7 8 9 10 11
| #!/bin/bash
containerName="JavaTest01" SpringBootPath="/root/MyTest01/SpringBoot/MyWeb01-SpringBoot-0.0.1-SNAPSHOT.jar"
docker run -d --name "$containerName" \ -p 8081:8081 \ --link MySQLTest01:db \ -v "$SpringBootPath":/app/your-app.jar \ openjdk:17 java -jar /app/your-app.jar
|
开放云服务器安全组入站规则8081
端口,浏览器访问云服务器IP:8081/Home/Kmo
验证。
结束后记得关闭云服务器的3306
入站规则
(完)