环境准备
- jdk17
参考《JDK17安装教程及环境变量配置》
jdk17下载,或者先安装Scoop,使用scoop install openjdk19; scoop install openjdk8-redhat
- IntelliJ
工具下载:jetbrains-toolbox,安装IntelliJ IDEA Ultimate
- 官方文档
中文官方入门文档
[api文档]https://springdoc.org/v2/
一、安装 Spring Boot[gradle]
以下为win11环境
1. 安装Scoop
使用中文官方入门文档中 3.2.6. Windows Scoop 安装
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
irm get.scoop.sh -outfile 'install.ps1'
.\install.ps1 -RunAsAdmin
https://github.com/ScoopInstaller/Install#for-admin
官方教程admin用户。使用科学上网安装,或添加hosts: 解决raw.githubusercontent.com无法访问的问题。
#或使用国内镜像下载:
iwr https://gitee.com/glsnames/scoop-installer/raw/master/bin/install.ps1 | iex
2. 初始化安装
scoop install git
# 官方提供
scoop bucket add extras
scoop bucket add java
scoop install gradle
scoop install springboot
# scoop install [email protected]
spring --version
参考《Scoop windows下的包管理器》
换源:提高下载速度
要改善 Scoop 的下载速度,详细可以参照 Scoop | Gitee 版 的说明更换下载源。换源之后的Scoop,速度提升不是一星半点儿。
更换 Scoop 源
scoop config SCOOP_REPO 'https://gitee.com/glsnames/scoop-installer'
scoop config SCOOP_REPO https://gitee.com/squallliu/scoop
scoop update
git -C "${Env:USERPROFILE}\scoop\buckets\main" remote set-url origin https://hub.fastgit.org/ScoopInstaller/Main.git
git -C "${Env:USERPROFILE}\scoop\buckets\extras" remote set-url origin https://hub.fastgit.org/lukesampson/scoop-extras.git
注
gradle与Java 兼容性说明
3. 建立空项目
在gradle/wrapper/gradle-wrapper.properties中修改
distributionUrl
中gradle
版本与当前环境兼容distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
在根目录build.gradle中修改
sourceCompatibility
版本与当前环境一致sourceCompatibility = '19'
点击工具栏运行项目。访问:http://localhost:8080/。
二、连接MySQL
1. 创建MySQL测试环境
docker network create mybridge --subnet=172.16.0.0/16
docker run --name mysql8 \
--network mybridge --ip=172.16.11.1 -p 3306:3306 \
-e MYSQL_ROOT_PASSWORD='dbpass' \
--restart=always \
-d mysql --character-set-server=utf8mb4
docker rm -f pma01 && docker run --name pma01 \
--network mybridge --ip=172.16.33.1 -p 9033:80 \
-e PMA_HOST=mysql8 \
-e PMA_PORT=3306 \
-e PMA_USER='root' \
-e PMA_PASSWORD='dbpass' \
--restart=always \
-d phpmyadmin
路由器绑定IP并访问 http://192.168.10.104:9033/。phpmyadmin需要root用户。创建springboot数据库。
-- drop user 'dbuser'@'%';
create user dbuser@'%' identified by 'dbpass';
update mysql.user set authentication_string = '' where user = 'dbuser';
FLUSH PRIVILEGES;
update mysql.user set host = '%', plugin = 'mysql_native_password' where user = 'dbuser';
ALTER USER 'dbuser'@'%' IDENTIFIED WITH mysql_native_password BY 'dbpass';
grant all privileges on *.* to dbuser@'%';
flush privileges;
2. 安装MyBatis-Plus
Could not find method compile解决方案
compile, runtime, testCompile, and testRuntime 等在Gradle 7.0以后移除了,我们需要用 implementation, runtimeOnly, testImplementation, and testRuntimeOnly 一替代。
例如:compile 改成 implementation.
build.gradle中修改
dependencies {
implementation 'mysql:mysql-connector-java:8.0.31'
implementation group: 'com.baomidou', name: 'mybatis-plus-boot-starter', version: '3.5.3.1'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
resources/application.properties中修改添加
# mysql
spring.datasource.url=jdbc:mysql://192.168.10.104/springboot
spring.datasource.username=dbuser
spring.datasource.password=dbpass
点击工具栏运行项目。
3. 简单测试CURD
安装mybatisx
插件。
添加 lombok
代码上传 https://github.com/cffycls/springboot
src/main/resources/application.properties
数据库配置,spring.sql.init.mode=alaways同步|never不同步数据库。
# mysql
spring.datasource.url=jdbc:mysql://192.168.10.104/springboot?characterEncoding=utf8&allowMultiQueries=true&serverTimezone=Asia/Shanghai
spring.datasource.username=dbuser
spring.datasource.password=dbpass
# mysql.init
spring.sql.init.mode=never
spring.sql.init.schema-locations=classpath:sql/schema.sql,classpath:sql/data.sql
执行单元测试查看结果。