1、【file】==》【settings】==》【build,execution,deployment】==》【compiler】==》勾选【build project automatically】。 2、【ctrl+shift+a】==》【actions】==》【registry】==》勾选【co ...
分类:
其他好文 时间:
2021-05-04 15:26:55
阅读次数:
0
maven依赖 <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>4.0.3</version> </dependency> <dependency> <groupId>org. ...
分类:
编程语言 时间:
2021-05-03 13:19:41
阅读次数:
0
环境 kubernetes 1.20.4 Spring Boot 2.5.0-M3 目标 concurrencyPolicy 可以设置并发策略,合法的值包括以下三种,默认为 Allow: Allow 允许并行运行 Forbid 禁止并行运行 Replace 结束已经在运行的,重新启动一个新的。 示例 ...
分类:
其他好文 时间:
2021-05-03 12:33:14
阅读次数:
0
SpringSecurity 功能 spring security 的核心功能主要包括: 认证 (你是谁) 授权 (你能干什么) 攻击防护 (防止伪造身份) Spring Security是针对Spring项目的安全框架,也是Spring Boot底层安全模块默认的技术选型,他可以实现强大的Web安 ...
分类:
编程语言 时间:
2021-04-29 11:54:47
阅读次数:
0
spring boot配置ssl 1、申请免费SSL证书 免费ssl证书可以在你买域名的地方随便申请,申请之后下载jks格式的证书 下载解压之后会有两个东西 2、配置springboot中的application.yml或者application.properties配置文件 先把xxx.jks文件 ...
分类:
编程语言 时间:
2021-04-27 14:54:44
阅读次数:
0
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency></dependencies> ...
分类:
其他好文 时间:
2021-04-24 13:41:04
阅读次数:
0
Spring Boot 下使用JPA,报org.hibernate.HibernateException: Access to DialectResolutionInfo cannot be null when 'hibernate.dialect' not set错误,异常信息如下: Caused ...
分类:
编程语言 时间:
2021-04-23 12:28:00
阅读次数:
0
Spring Boot:The field file exceeds its maximum permitted size of 1048576 bytes. 解决方法一: 根据spring boot 版本不同在application文件添加不同的配置 Spring Boot 1.3 或之前的版本: ...
分类:
编程语言 时间:
2021-04-21 11:47:02
阅读次数:
0
使用环境 项目环境:Idea 2020.2.3、 Maven 3.6.3 、springboot 2.1.4 本人在创建springboot项目时spring-boot-maven-plugin 及Idea右侧Plugins划红,导致项目启动打包有问题。虽然项目能跑,但是后续开发中可能会出现不可预知 ...
分类:
编程语言 时间:
2021-04-19 14:12:25
阅读次数:
0
有时,在一个项目中会用到多数据源,此时可以使用苞米豆的dynamic-datasource-spring-boot-starter:首先,引入jar包: <dependency> <groupId>com.baomidou</groupId> <artifactId>dynamic-datasour ...
分类:
其他好文 时间:
2021-04-16 12:22:51
阅读次数:
0