08 2022 档案

摘要:<!-- 二维码--> <dependency> <groupId>com.google.zxing</groupId> <artifactId>core</artifactId> <version>3.3.0</version> </dependency> <dependency> <groupI 阅读全文
posted @ 2022-08-30 21:03 熬夜遭毒打 阅读(178) 评论(0) 推荐(0)
摘要:第一步写一个config的类继承,WebMvcConfigurationSupport 重写这个方法/**是指这个后面的路径都可以加载 另一个配置类加载 web: resources: static-locations: classpath:atic,classpath:/public,classp 阅读全文
posted @ 2022-08-30 09:37 熬夜遭毒打 阅读(117) 评论(0) 推荐(0)
摘要:PageHelper循环依赖 com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration 关于这个报错是插件版本问题,要么降低你的版本,要么提高1.4.1 <!--分页插件--><dependency> <groupId>com.g 阅读全文
posted @ 2022-08-10 23:03 熬夜遭毒打 阅读(857) 评论(0) 推荐(2)
摘要:<!-- 导入依赖,高版本会报错--> <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.4.1</vers 阅读全文
posted @ 2022-08-07 21:03 熬夜遭毒打 阅读(66) 评论(0) 推荐(0)
摘要:@Data这个是非常常用的注解,这个注解其实是五个注解的合体:(提供类的get、set、EqualsAndHashCode、toString方法) @NoArgsConstructor生成一个无参数的构造方法。 @AllArgsConstructor生成一个包含所有变量的构造方法。 <--!依赖 > 阅读全文
posted @ 2022-08-06 21:37 熬夜遭毒打 阅读(90) 评论(0) 推荐(0)