springboot3.0快速搭建入门测试资料整理

环境准备

一、安装 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. 建立空项目

新建项目
springboot3.0快速搭建入门测试资料整理_第1张图片
springboot3.0快速搭建入门测试资料整理_第2张图片

  • 在gradle/wrapper/gradle-wrapper.properties中修改distributionUrlgradle版本与当前环境兼容

    distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
  • 在根目录build.gradle中修改sourceCompatibility版本与当前环境一致

    sourceCompatibility = '19'

    gradle 中的sourceCompatibility 与 targetCompatibility 的区别

点击工具栏运行项目。访问: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

执行单元测试查看结果。

你可能感兴趣的:(springboot3.0快速搭建入门测试资料整理)