#BOOT

SpringBoot 使用Druid连接池

1.pom依赖<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-jpa</artifactId></dependency...

SpringBoot 使用okhttp3

1.添加pom.xml依赖<dependency><groupId>com.squareup.okhttp3</groupId><artifactId>okhttp</artifactId><version>3.6.0</version>...
代码星球 ·2020-10-21

SpringBoot 优化内嵌的Tomcat

在通过SpringBoot调用其它服务时,报错org.springframework.web.client.ResourceAccessException:I/OerroronPOSTrequestfor"http://18.16.200.110:8083/app/user/login":Readtimedout;ne...

SpringBoot 通过token进行身份验证,存储redis

代码:publicinterfaceTokenManager{/***创建token*@paramuserInfo*@return*/StringgetToken(UserInfouserInfo);/***刷新用户*@paramtoken*/voidrefreshUserToken(Stringtoken);/***...

SpringBoot Mybatis 分页插件PageHelper

添加maven配置:<!--分布插件--><dependency><groupId>com.github.pagehelper</groupId><artifactId>pagehelper</artifactId><version>4...

SpringBoot 使用validation数据校验

后端对数据进行验证添加包hibernate-validator<!--https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator--><dependency><groupId>org.h...

SpringBoot 读取properties配置文件 @Value使用 中文乱码问题

一,idea中配置文件中文乱码问题使用idea开发,读取properites配置文件配置:#app菜单#没有限制,所有人都可访问的菜单menu.unlimited=订单审批,现场尽调,合作贷审批#客户经理菜单menu.customerManager=建档,订单申请,提款申请Config;@Component@Data@...

SpringBoot 解决HttpServletRequest只能读取一次

业务逻辑,通过filter读取请求的request,获取token,并将token传递后面流程使用BodyReaderHttpServletRequestWrapper:publicclassBodyReaderHttpServletRequestWrapperextendsHttpServletRequestWrap...

SpringBoot 统一异常处理

统一异常处理:@ControllerAdvicepublicclassGlobalExceptionHandler{privateLoggerlogger=LoggerFactory.getLogger(getClass());/***处理自定义异常*/@ExceptionHandler(AuthException.c...

SpringBoot Redis使用fastjson进行序列化

 在使用spring-data-redis,默认情况下是使用org.springframework.data.redis.serializer.JdkSerializationRedisSerializer这个类来做序列化我们使用jackson方式:Jacksonredis序列化是spring中自带的@Bea...

SpringBoot 使用jwt进行身份验证

这里只供参考,比较使用jwt方式进行身份验证感觉不好,最不行的就是不能退出登陆时设定多长过期时间,只能等这个时间过了以后才算退出,服务端只能验证请求过来的token是否通过验证Code:/***Createdbyqhongon2018/6/715:34*标注该注解的,就不需要登录**/@Target({ElementT...

SpringBoot 使用RedisTemplate操作Redis

Redis工具类(旧版本)importjava.util.List;importjava.util.Map;importjava.util.Set;importjava.util.concurrent.TimeUnit;importorg.springframework.beans.factory.annotation...

SpringBoot 消息转换器 HttpMessageConverter

1.简介:Spring在处理请求时,由合适的消息转换器将请求报文绑定为方法中的形参对象,在这里,同一个对象就有可能出现多种不同的消息形式,比如json和xml。同样,当响应请求时,方法的返回值也同样可能被返回为不同的消息形式,比如json和xml。在Spring中,针对不同的消息形式,我们有不同的HttpMessage...

SpringBoot 全局统一记录日志

1.记录日志使用aop来记录controller中的请求返回日志pom.xml引入:<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-aop<...

SpringBoot Mybatis问题收集

1.在SpringBoot中打印mybatis中执行的sql其实在application.properties文件下,添加一下配置即可:logging.level.org.springframework=WARNlogging.level.org.spring.springboot.dao=DEBUGlogging.f...
首页上一页...3940414243...下一页尾页