摘要:
Redis数据结构--字符串 阅读全文
摘要:
此处的Unit Test in SpringBoot 包括: SpringApplication Test Service Test ControllerTest 测试项目结构如下: 代码如下: POM.xml UnitTest book.json 阅读全文
摘要:
4.0.0 org.springframework.boot spring-boot-starter-parent 2.0.1.RELEASE com.study SpringBootTest-1 0.0.1-SNAPSHOT RequestBodyTest ... 阅读全文
摘要:
从以下程序运行Log 可以看出在一个Request 执行过程中 MyListener>>requestInitialized >>> MyFilter>>>doFilter >>> MyInterceptor1>>>preHandle >>> Controller method >>> MyInte 阅读全文
摘要:
1. Run spring boot as a standalone application (non-web) 2. Use CommandLineRunner 启动系统任务 有一些特殊的任务需要在系统启动时执行,例如配置文件加载、数据库初始化等操作。 Spring Boot 项目会在启动时遍历素 阅读全文
摘要:
使用@ControllerAdvice 定义 全局异常处理 package com.app; import java.io.IOException; import java.io.PrintWriter; import javax.servlet.http.HttpServletResponse; 阅读全文
摘要:
单、多文件上传:单文件上传使用upload.html ,多文件上传使用uploads.html 创建一个Springboot application, POM 中加入 spring-boot-starter-web 依赖 upload.html uploads.html 创建Controller 用 阅读全文
摘要:
使用keytool 命令,生成一个数字证书: keytool -genkey -alias tomcathttps -keyalg RSA -keysize 2048 -keystore key.p12 -validity 365 其中 keystore 表示生成的密钥存放位置, validity 阅读全文
摘要:
spring-boot-starter-parent 提供了Dependency Management 进行项目依赖的版本管理,默认的资源过滤和插件配置。 但是,当需要将其他项目作为parent 的时候,同时又希望对项目依赖版本进行统一的管理时,可以使用 dependencyManagement 来 阅读全文
摘要:
此处,讲述构造函数有0 、 1 、2 、3 (需要自己定义相应的函数式接口)个参数的时候,应该使用的函数式接口: 构造方法引用: Class::new 首先,定义Apple对象,并定义有0 、 1 、2 、3个参数的构造函数: public class Apple { public Apple() 阅读全文