springboot: 所有类都要放在 main 方法的类的子包下或同级包下,不然就无法被扫描成 spring 容器的Bean
springboot 脚手架下载地址
官方: https://start.spring.io/
国内: https://start.springboot.io/
阿里云: https://start.aliyun.com/
springboot 的 pom 依赖
// 提供底层依赖、自动配置
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
// mybatis整合springboot
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>3.0.2</version>
</dependency>
// 集成Druid数据库连接池和监控
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.2.16</version>
</dependency>
// 分页
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.4.6</version>
</dependency>
// 分页的使用
public PageInfo<TUser> getUserByPage(int page) {
PageHelper.startPage(page, Constants.PAGE_SIZE);
List<TUser> tUsers = tUserMapper.selectUserPage();
PageInfo<TUser> tUserPageInfo = new PageInfo<>(tUsers);
return tUserPageInfo;
}
// 开发自动热部署依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
// 创建和渲染 Web 应用的视图
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
application.yml 命令
服务器端口
server
port = 8081
访问路径
server
servlet
context-path: /zjh
逐个读取自定义配置
project:
copyright:
author: zhangSan
address: HangZhou
使用
// 将单个文件映射成一个对象
@Value(value = "${project.copyright.author}")
private String author;
// 将整个文件映射成一个对象
@ConfigurationProperties(prefix = "project.copyright")
激活测试环境
例如:application-test.yml
使用测试环境
spring
profiles
active: test
配置数据源
spring:
datasource:
username: root
password: 123456
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://192.168.32.128:3306/users?useUnicode=true&characterEncoding=utf8&useSSL=false
RESTful
注解: @PathVariable
寻常接口: http://localhost:8080/boot/order?id=1021&status=1
RESTFul 风格的接口: http://localhost:8080/boot/order/1021/1
统一异常处理
注解: @RestControllerAdvice
@RestControllerAdvice
public class GlobalExceptionHandler {
@ExceptionHandler
public String ArithmeticException(ArithmeticException a) {
a.printStackTrace();
return "服务器异常 ArithmeticException";
}
}
拦截器
注解: @Configuration
@Override
public void addInterceptors(InterceptorRegistry registry) {
registry.addInterceptor(new LoginInterceptor())
.addPathPatterns("/api/*") // 拦截了/api/*,但是/api/*/*的可以访问
.excludePathPatterns("/api/zjh2"); //不拦截
}
springboot 定时任务
注解: @EnableScheduling
使用: @Scheduled(cron = “15-40 * * * * *”)
纯 java 程序
依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
main 方法一
public static void main(String[] args) {
ApplicationContext context = SpringApplication.run(TaskApplication.class, args);
HelloService helloService = context.getBean(HelloService.class);
}
main 方法二
public static void main(String[] args) {
SpringApplication application = new SpringApplication(TaskApplication.class);
application.run();
}
@Override
public void run(String... args) throws Exception {
System.out.println(helloService.hello());
}
springboot 打包 war 包和 jar 包
jar: 用 maven 将 Spring Boot 程序打成 jar 包,使用 java 命令运行:java -jar spring-boot-xxx.jar
war: 使用 Spring Boot 的 maven 插件将 Spring Boot 程序打成 war 包,单独部署在 Tomcat 中运行