摘要:
select setval('rbac_power_bi_request_id_seq',(select max(id) from rbac_power_bi_request)); 阅读全文
摘要:
mybatis 中对 map 进行 遍历 <select id="getTableDataByFilter" resultType="Map"> select * from ${tableName} where 1 = 1 <if test="map != null"> <foreach colle 阅读全文
摘要:
可以用如下方式排除依赖包:implementation group: 'org.springframework.boot', name: 'spring-boot-starter-data-redis', version: '2.5.5',{ exclude group: 'io.lettuce' 阅读全文
摘要:
select * from pg_stat_activity where application_name = 'PostgreSQL JDBC Driver'; 可以查看数据库连接数 原文连接:https://blog.csdn.net/kiwi_kid/article/details/50854 阅读全文
摘要:
查看springboot发布根目录 ApplicationHome h = new ApplicationHome(getClass()); h.toString()即项目部署的根目录 阅读全文
摘要:
一、获取所有的 BeanPostProcessor;后置处理器都默认可以通过PriorityOrdered、Ordered接口来执行优先级 BeanPostProcessor 可以提高bean加载的优先级 阅读全文
摘要:
HttpHeaders headers = new HttpHeaders();MediaType type = MediaType.parseMediaType("application/json; charset=UTF-8");headers.setContentType(type);head 阅读全文
摘要:
1、application.yml 增加多数据源配置: spring: datasource: type: com.alibaba.druid.pool.DruidDataSource druid: driver-class-name: com.mysql.cj.jdbc.Driver url: j 阅读全文
摘要:
问题: 通过kenkins 部署jar包启动的进程会被自己杀掉 解决方法: 1.重设环境变量build_id 在execute shell输入框中加入BUILD_ID=DONTKILLME,即可防止jenkins杀死启动的java进程 原文链接:https://blog.csdn.net/sdmxd 阅读全文
摘要:
Jenkins是用java编写的开源持续集成工具,目前被国内外各公司广泛使用。本章教大家如何在linux服务器上安装Jenkins。 1、安装jdk Jenkins的运行需要依赖jdk,所以在安装Jenkins之前我们得先把jdk装上。 2. yum安装Jenkins 这里推荐使用yum方式安装Je 阅读全文