青浦区网站建设,外贸大楼27号,网站建设网络拓扑,非凡门户wordpress企业主题在我们写controller或者Service层的时候#xff0c;需要注入很多的mapper接口或者另外的service接口#xff0c;这时候就会写很多的AutoWired注解#xff0c;代码看起来很乱 lombok提供了一个注解#xff1a; RequiredArgsConstructor(onConstructor _(Autowired)) 写在类上… 在我们写controller或者Service层的时候需要注入很多的mapper接口或者另外的service接口这时候就会写很多的AutoWired注解代码看起来很乱 lombok提供了一个注解 RequiredArgsConstructor(onConstructor _(Autowired)) 写在类上可以代替AutoWired注解需要注意的是在注入时需要用final定义
RestController
RequiredArgsConstructor(onConstructor_ Autowired)
public class PushController {private final XXXService xxxService;GetMapping(/demo)public String push() {return xxxService.push();}
}