springboot多数据源配置


import javax.sql.DataSource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Qualifier;

Guava使用


版本差异 1x. 2x. Objects.toStringHelper MoreObjects.toStringHelper HashFunction.hashString(String) HashFunction.hashString(String,Charset) Hasher.putStrin

SpringBoot BCryptPasswordEncoder 使用记录


在spring的项目中使用BCryptPasswordEncoder 加密用户密码 passwordEncoder.encode(userEntity.getPassword()) passwordEncoder.matches(password, user.getPassword()) 耗时超过5

Spring WebFlux快速上手——响应式Spring的道法术器


https://blog.csdn.net/get_set/article/details/79480233 本系列其他文章见:《响应式Spring的道法术器》。 前情提要:响应式流 |