摘要:
SpringBoot配置Kafka的生产者与消费者1. 配置pom.xml 文件<dependency> <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka</artifactId></dependency>2. 阅读全文
摘要:
配置文件RestTemplateConfig import org.apache.http.conn.ssl.NoopHostnameVerifier; import org.apache.http.conn.ssl.SSLConnectionSocketFactory; import org.ap 阅读全文
摘要:
基于权限管理时的用户角色权限处理。 实体类: 1.User public class User{ private Integer uid; private String username; private String password; private Set<Role> roles=new Ha 阅读全文
摘要:
后端校验技术 JSR303技术,JSR-303 是JAVA EE 6 中的一项子规范,叫做Bean Validation,Hibernate Validator 是 Bean Validation 的参考实现 . Hibernate Validator 提供了 JSR 303 规范中所有内置 con 阅读全文