
SpringBoot
成明宁杰
Java Spring WEB AI 性能优化等学习交流
展开
-
Spring Mybatis随记
TransactionSynchronizationManager为每个线程对应的数据库连接维护了事务相关的信息。mybatis通过SqlSession进行数据库操作;原创 2023-12-15 17:16:06 · 609 阅读 · 0 评论 -
Spring上传文件路径配置
Spring上传文件路径配置与Tomcat源码说明原创 2022-12-15 18:45:00 · 5587 阅读 · 0 评论 -
SpringBoot集成OAuth2.0有新方案了
SpringBoot 2.X已经抛弃了对Spring Security OAuth模块,而是通过Spring Security 5 支持了OAuth 2.0、客户端、资源服务器、授权服务器(当前版本0.2.3,尚未稳定)。原创 2022-05-15 10:14:27 · 3172 阅读 · 0 评论 -
Springboot @Async不执行原因分析
Spring @Async执行慢、或者不执行分析原创 2022-04-28 11:29:41 · 4774 阅读 · 0 评论 -
SpingCloud获取当前服务ip地址
获取方式:@Value("${spring.cloud.client.ip-address}")源码获取地址参考:/* * Copyright 2012-2020 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License.原创 2022-03-24 20:29:37 · 6370 阅读 · 0 评论 -
FeignClient增加Basic Authentication认证信息
SpringBoot应用中通过使用FeignClient与第三方服务REST API交互。如果请求中需要进行安全认证,可以对FeignClient进行设置,下面以Basic Authentication 认证为例说明如何使用。@FeignClient(name = "workflow", url = "${workflow.api.baseUrl}", configuration = WorkFlowFeignClientConfiguration.class)public interface Work原创 2022-01-15 11:38:14 · 2905 阅读 · 0 评论 -
Spring将不同数据库的唯一约束异常统一为DuplicateKeyException分析
达梦数据库、南大通用等国产数据库错误码与Spring框架适配的方式。Spring将不同数据库如Oracel、MySQL出现唯一约束异常能统一为DuplicateKeyException的分析原创 2021-12-31 20:45:17 · 4266 阅读 · 0 评论 -
SpringBoot打印指定DAO层SQL
SpringBoot打印指定DAO层SQL原创 2021-12-22 08:41:15 · 781 阅读 · 0 评论