@SpringBootApplication是SpringBoot应用程序的核心注解,通常用于主类上。它包含了以下三个注解:
这个注解是 Spring Boot 项目的基石,创建 SpringBoot 项目之后会默认在主类加上。
@SpringBootApplication
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
package org.springframework.boot.autoconfigure;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Inherited
@SpringBootConfiguration
@EnableAutoConfiguration
@ComponentScan(excludeFilters = {
@Filter(type = FilterType.CUSTOM, classes = TypeExcludeFilter.class),
@Filter(type = FilterType.CUSTOM, classes = AutoConfigurationExcludeFilter.class) })
public @interface SpringBootApplication {
......
}
package org.springframework.boot;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Configuration
public @interface SpringBootConfiguration {
......
}
注意事项:
@Autowired是Spring的核心注解之一,用于实现依赖注入。它可以自动装配Bean,无需手动创建和管理对象。被注入进的类同样要被 Spring 容器管理比如:Service 类注入到 Controller 类中。
@RestController
public class UserController {
@Autowired
private UserService userService;
@GetMapping("/users")
public List<User> getUsers() {
return userService.getUsers();
}
}
注意事项:
一般使用 @Autowired 注解让 Spring 容器帮我们自动装配 bean。要想把类标识成可用于 @Autowired 注解自动装配的 bean 的类,可以采用以下注解实现:
@Component
:通用的注解,可标注任意类为 Spring 组件。如果一个 Bean 不知道属于哪个层,可以使用@Component 注解标注。@Repository
:对应持久层即 Dao 层,主要用于数据库相关操作。@Service
:对应服务层,主要涉及一些复杂的逻辑,需要用到 Dao 层。@Controller
:对应 Spring MVC 控制层,主要用于接受用户请求并调用 Service 层返回数据给前端页面。@RestController注解是@Controller和@ResponseBody的合集,表示这是个控制器 bean,并且是将函数的返回值直接填入 HTTP 响应体中,是 REST 风格的控制器。其中,@ResponseBody:表示将方法返回值作为HTTP响应体,而不是视图名称。
在控制器类上添加@RestController注解,然后在方法上添加相应的HTTP请求映射注解,例如:@GetMapping、@PostMapping等。使用方法如下:
@RestController
public class HelloController {
@GetMapping("/hello")
public String hello() {
return "Hello, SpringBoot!";
}
}
注意事项:
@RestController 与 @Controller的区别:
@Configuration是Spring的核心注解之一,用于定义配置类。它表示该类是一个Java配置类,可以用来替代XML配置文件。其使用时是在类上添加@Configuration注解,然后在方法上添加@Bean注解定义Bean。
@Configuration
public class AppConfig {
@Bean
public UserService userService() {
return new UserService();
}
}
注意事项:
@Scope用来声明 Spring Bean 的作用域,使用方法:
@Bean
@Scope("singleton")
public Person personSingleton() {
return new Person();
}
四种常见的 Spring Bean 的作用域:
几种常见的请求类型如下:
GET
:请求从服务器获取特定资源。举个例子:GET /users(获取所有用户)POST
:在服务器上创建一个新的资源。举个例子:POST /users(创建用户)PUT
:更新服务器上的资源(客户端提供更新后的整个资源)。举个例子:PUT /users/1(更新编号为 1 的用户)DELETE
:从服务器删除特定的资源。举个例子:DELETE /users/1(删除编号为 1 的用户)PATCH
:更新服务器上的资源(客户端提供更改的属性,可以看做作是部分更新),使用的比较少。@GetMapping(“users”) 等价于@RequestMapping(value=“/users”,method=RequestMethod.GET)
@GetMapping("/users")
public ResponseEntity<List<User>> getAllUsers() {
return userRepository.findAll();
}
@GetMapping("/getUser/{userId}")
public ResponseEntity<User> getUser(@PathVariable(value = "userId") Long userId) {
return userRepository.find(userId);
}
@PostMapping(“users”) 等价于@RequestMapping(value=“/users”,method=RequestMethod.POST)关于@RequestBody注解的使用,在后面的“前后端传值”会解释。
@PostMapping("/users")
public ResponseEntity<User> createUser(@Valid @RequestBody UserCreateRequest userCreateRequest) {
return userRespository.save(userCreateRequest);
}
@PutMapping(“/users/{userId}”) 等价于@RequestMapping(value=“/users/{userId}”,method=RequestMethod.PUT)
@PutMapping("/users/{userId}")
public ResponseEntity<User> updateUser(@PathVariable(value = "userId") Long userId,
@Valid @RequestBody UserUpdateRequest userUpdateRequest) {
......
}
@DeleteMapping(“/users/{userId}”)等价于@RequestMapping(value=“/users/{userId}”,method=RequestMethod.DELETE)
@DeleteMapping("/users/{userId}")
public ResponseEntity deleteUser(@PathVariable(value = "userId") Long userId){
......
}
一般实际项目中,都是 PUT 不够用了之后才用 PATCH 请求去更新数据。使用PUT请求时,会考虑将整个资源进行替换,适用于需要对整个资源进行更新或替换的情况。这可以确保资源的完整性和一致性。而当只需要对资源的部分属性或字段进行更新时,可以选择使用PATCH请求。PATCH请求更灵活,能够实现部分更新,同时避免了不必要的数据传输和处理,从而提高了效率。
@PatchMapping("/profile")
public ResponseEntity updateStudent(@RequestBody UserUpdateRequest userUpdateRequest) {
userRepository.updateDetail(userUpdateRequest);
return ResponseEntity.ok().build();
}
@PathVariable用于获取路径参数,@RequestParam用于获取查询参数。
@GetMapping("/user/{userId}")
public List<Teacher> getKlassRelatedTeachers(@PathVariable("userId") Long userId,
@RequestParam(value = "type", required = false) String type ) {
...
}
如果我们请求的 url 是:/user/123456?type=web,那么服务获取到的数据就是:userId=123456,type=web。
用于读取 Request 请求(可能是 POST,PUT,DELETE,GET 请求)的 body 部分并且Content-Type 为 application/json 格式的数据,接收到数据之后会自动将数据绑定到 Java 对象上去。系统会使用HttpMessageConverter或者自定义的HttpMessageConverter将请求的 body 中的 json 字符串转换为 java 对象。
有一个注册的接口:
@PostMapping("/sign-up")
public ResponseEntity signUp(@RequestBody @Valid UserRegisterRequest userRegisterRequest) {
userService.save(userRegisterRequest);
return ResponseEntity.ok().build();
}
其中,UserRegisterRequest对象:
@Data
@AllArgsConstructor
@NoArgsConstructor
public class UserRegisterRequest {
private String userName;
private String password;
private String fullName;
}
发送 post 请求到这个接口,并且 body 携带 JSON 数据:
{ "userName": "coder", "fullName": "shuangkou", "password": "123456" }
很多时候我们需要将一些常用的配置信息比如阿里云 oss、发送短信、微信认证的相关配置信息等等放到配置文件中。Spring 为我们提供了哪些方式帮助我们从配置文件中读取这些配置信息。
数据源application.yml内容如下:
myconfig: 我的配置
my-profile:
name: lt
email: [email protected]
library:
location: 位置
books:
- name: Java
description: Java语言。
- name: JavaScript
description: JavaScript语言。
使用 @Value(“${property}”) 读取比较简单的配置信息:
@Value("${myconfig}")
String myconfig;
通过@ConfigurationProperties读取配置信息并与 bean 绑定。可以像使用普通的 Spring bean 一样,将其注入到类中使用。
@Component
@ConfigurationProperties(prefix = "library")
class LibraryProperties {
@NotEmpty
private String location;
private List<Book> books;
@Data
@ToString
static class Book {
String name;
String description;
}
......
}
@PropertySource读取指定 properties 文件
@Component
@PropertySource("classpath:website.properties")
class WebSite {
@Value("${url}")
private String url;
}
数据的校验在前后端都需要,避免用户绕过浏览器直接通过一些 HTTP 工具直接向后端请求一些违法数据。
JSR(Java Specification Requests)是一套 JavaBean 参数校验的标准,它定义了很多常用的校验注解,可以直接将这些注解加在我JavaBean 的属性上面,这样就可以在校验的时候进行校验了。校验的时候实际用的是 Hibernate Validator 框架。Hibernate Validator 是 Hibernate 团队最初的数据校验框架,SpringBoot 项目的 spring-boot-starter-web( 2.3.11.RELEASE前的版本) 依赖中已经有 hibernate-validator 包,不需要引用相关依赖;但是更新版本的 spring-boot-starter-web 依赖中不再有 hibernate-validator 包,需要自己引入 spring-boot-starter-validation 依赖。
@Data
@AllArgsConstructor
@NoArgsConstructor
public class Person {
@NotNull(message = "classId 不能为空")
private String classId;
@Size(max = 33)
@NotNull(message = "name 不能为空")
private String name;
@Pattern(regexp = "((^Man$|^Woman$|^UGM$))", message = "sex 值不在可选范围")
@NotNull(message = "sex 不能为空")
private String sex;
@Email(message = "email 格式不正确")
@NotNull(message = "email 不能为空")
private String email;
}
在需要验证的参数上加上了@Valid注解,如果验证失败,它将抛出MethodArgumentNotValidException。
@RestController
@RequestMapping("/api")
public class PersonController {
@PostMapping("/person")
public ResponseEntity<Person> getPerson(@RequestBody @Valid Person person) {
return ResponseEntity.ok().body(person);
}
}
不要忘记在类上加上 @Valid 注解了,这个参数可以告诉 Spring 去校验方法参数。
@RestController
@RequestMapping("/api")
@Validated
public class PersonController {
@GetMapping("/person/{id}")
public ResponseEntity<Integer> getPersonById(@Valid @PathVariable("id") @Max(value = 5,message = "超过 id 的范围了") Integer id) {
return ResponseEntity.ok().body(id);
}
}
相关注解:
如果方法参数不对的话就会抛出MethodArgumentNotValidException,进而处理这个异常。
@ControllerAdvice
@ResponseBody
public class GlobalExceptionHandler {
//请求参数异常处理
@ExceptionHandler(MethodArgumentNotValidException.class)
public ResponseEntity<?> handleMethodArgumentNotValidException(MethodArgumentNotValidException ex, HttpServletRequest request) {
......
}
}
Java Persistence API (JPA) 是一种基于 ORM (Object-Relational Mapping) 技术的 Java EE 规范。它主要用于将 Java 对象映射到关系型数据库中,以便于对数据进行持久化操作。JPA详解可以参考博文:Spring Data JPA 详解
@Entity
@Table(name = "role")
public class Role {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
private String description;
}
主键生成的两种方法:
通过 @GeneratedValue直接使用 JPA 内置提供的四种主键生成策略来指定主键生成策略。
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
JPA 使用枚举定义了 4 种常见的主键生成策略,如下:
public enum GenerationType {
// 使用一个特定的数据库表格来保存主键,持久化引擎通过关系数据库的一张特定的表格来生成主键
TABLE,
// 在某些数据库中,不支持主键自增长,比如Oracle、PostgreSQL其提供了一种叫做"序列"的机制生成主键
SEQUENCE,
// 主键自增长
IDENTITY,
// 把主键生成策略交给持久化引擎,持久化引擎会根据数据库在以上三种主键生成 策略中选择其中一种
AUTO
}
注意:@GeneratedValue注解默认使用的策略是GenerationType.AUTO。一般使用 MySQL 数据库的话,使用GenerationType.IDENTITY策略比较普遍一点(分布式系统的话需要另外考虑使用分布式 ID)。
通过 @GenericGenerator声明一个主键策略,然后 @GeneratedValue使用这个策略
@Id
@GeneratedValue(generator = "IdentityIdGenerator")
@GenericGenerator(name = "IdentityIdGenerator", strategy = "identity")
private Long id;
等价于:
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
示例:
设置属性 userName 对应的数据库字段名为 user_name,长度为 20,非空
@Column(name = "user_name", nullable = false, length=20)
private String userName;
设置字段类型并且加默认值。
@Column(columnDefinition = "tinyint(1) default 0")
private Boolean enabled;
如果想让secrect 这个字段不被持久化,可以使用 @Transient关键字声明。
@Entity(name="USER")
public class User {
@Transient
private String secrect;
}
除了 @Transient关键字声明, 还可以采用下面几种方法:
static String secrect; // 由于静态而不持久化
final String secrect = "Satish"; // 由于是final而不持久化
transient String secrect; // 由于瞬态而不持久化
@Lob //声明content为大字段
@Basic(fetch = FetchType.EAGER) //指定Lob类型数据的获取策略, FetchType.EAGER为非延迟加载,FetchType.LAZY为延迟加载
@Column(name = "content", columnDefinition = "LONGTEXT NOT NULL") //columnDefinition 指定数据表对应的 Lob 字段类型
private String content;
声明定义枚举数据:
public enum Gender {
MALE("男性"),
FEMALE("女性");
private String value;
Gender(String str){
value=str;
}
}
使用方法如下,数据库里面对应存储的是 MALE 或 FEMALE。
@Entity
@Table(name = "role")
public class Role {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
@Enumerated(EnumType.STRING)
private Gender gender;
}
@Repository
public interface UserRepository extends JpaRepository<User, Integer> {
@Modifying
@Transactional(rollbackFor = Exception.class)
void deleteByUserName(String userName);
}
只要继承了 AbstractAuditBase的类都会默认加上下面四个字段:
@Data
@AllArgsConstructor
@NoArgsConstructor
@MappedSuperclass
@EntityListeners(value = AuditingEntityListener.class)
public abstract class AbstractAuditBase {
@CreatedDate
@Column(updatable = false)
@JsonIgnore
private Instant createdAt;
@LastModifiedDate
@JsonIgnore
private Instant updatedAt;
@CreatedBy
@Column(updatable = false)
@JsonIgnore
private String createdBy;
@LastModifiedBy
@JsonIgnore
private String updatedBy;
}
对应的审计功能对应地配置类可能是下面这样的(Spring Security 项目):
@Configuration
@EnableJpaAuditing
public class AuditSecurityConfiguration {
@Bean
AuditorAware<String> auditorAware() {
return () -> Optional.ofNullable(SecurityContextHolder.getContext())
.map(SecurityContext::getAuthentication)
.filter(Authentication::isAuthenticated)
.map(Authentication::getName);
}
}
作用于方法示例如下:
@Transactional(rollbackFor = Exception.class)
public void save() {
}
其中, Exception 分为运行时异常 RuntimeException 和非运行时异常。在@Transactional注解中如果不配置rollbackFor属性,那么事务只会在遇到RuntimeException的时候才会回滚,加上rollbackFor=Exception.class,可以让事务在遇到非运行时异常时也回滚。
//生成json时将userRoles属性过滤
@JsonIgnoreProperties({"userRoles"})
public class User {
private String userName;
private String password;
private List<UserRole> userRoles = new ArrayList<>();
}
public class User {
private String userName;
private String password;
//生成json时将userRoles属性过滤
@JsonIgnore
private List<UserRole> userRoles = new ArrayList<>();
}
@JsonFormat(shape=JsonFormat.Shape.STRING, pattern="yyyy-MM-dd'T'", timezone="GMT")
private Date date;
@Data
@ToString
public class Account {
private Location location;
private PersonInfo personInfo;
@Data
@ToString
public static class Location {
private String provinceName;
}
@Data
@ToString
public static class PersonInfo {
private String userName;
}
}
未扁平化之前:
{
"location": {
"provinceName": "陕西",
},
"personInfo": {
"userName": "lt",
}
}
使用@JsonUnwrapped 扁平对象之后:
@Data
@ToString
public class Account {
@JsonUnwrapped
private Location location;
@JsonUnwrapped
private PersonInfo personInfo;
......
}
{
"provinceName": "陕西",
"userName": "lt",
}
@ActiveProfiles 一般作用于测试类上, 用于声明生效的 Spring 配置文件。
@SpringBootTest(webEnvironment = RANDOM_PORT)
@ActiveProfiles("test")
public abstract class TestBase {
......
}
@Test 声明一个方法为测试方法
@Transactional 被声明的测试方法的数据会回滚,避免污染测试数据。
@WithMockUser 由Spring Security 提供,用来模拟一个真实用户,并且可以赋予权限。
@Test
@Transactional
@WithMockUser(username = "lt", authorities = "ROLE_USER")
void should_import_user_success() throws Exception {
......
}