spring boot
ccubee
初级码农
展开
-
sourcetree操作步骤
sourcetree 基本操作原创 2023-02-01 08:37:55 · 323 阅读 · 0 评论 -
spring boot ruoyi tomcat windows 部署war包
spring boot ruoyi war tomcat 部署原创 2023-01-31 09:56:55 · 949 阅读 · 0 评论 -
spring boot学习
@Configuration默认@Configuration注解下的文件进行自动配置但是如果加了@ConditionalOnProperty @ConditionalOnClass 添加注解 则必须在满足条件的情况下才进行自动配置原创 2021-08-18 21:14:08 · 155 阅读 · 0 评论 -
多线程原来如此简单
如何实现多线程?提到实现多线程的实现方式,想必肯定会想到继承Thread类,实现Runnable类,然后重写run方法,但是这两种都不够方便,接下来我将用三种方式实现多线程 推荐第三种使用方式(函数式编程)方式一 继承Thread类public class ThreadTest extends Thread{ private final int a; private final int b; public ThreadTest(int a, int b) {原创 2021-10-28 20:34:56 · 174 阅读 · 0 评论 -
Maven 编译:Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date]
\target\surefire-reports for the individual test results,跑下空测试类 看看有什么错误 跑成功测试类 在打包即可原创 2021-01-25 16:22:56 · 1313 阅读 · 0 评论 -
Caused by: java.lang.NoClassDefFoundError: org/springframework/boot/context/properties/Configuration
解决方案将boot版本降低问题原因cloud 依赖版本跟 boot不一致一般情况是 spring boot版本高于cloud版本修改版本即可例如 spring boot 版本是2.4.2其他cloud依赖是 2.4以下 就会报错<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</原创 2021-01-19 17:32:20 · 10531 阅读 · 1 评论 -
HV000030: No validator could be found for constraint ‘javax.validation.constraints.NotBlank‘ validat
spring boot 2.3 使用了hibernate-validator 依赖 5.几版本在string 上面使用 @notblank注解报错换成6.几就好了 <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>原创 2020-10-31 12:32:22 · 519 阅读 · 0 评论 -
spring boot项目扫描mapper的几种方式
dao层我们知道的有两个注解@Mapper@Repository扫描mapper第一种方式每个mapper接口上添加@Mapper注解 这个注解会通过spring boot启动注解自动扫描扫描mapper第二种方式使用@MapperScan标注dao所在的包名这种方式引入会有红色波浪线问题 再加上@Repository这个注解就没有了...原创 2020-07-15 09:40:39 · 2534 阅读 · 0 评论