随笔分类 - springboot
摘要:java这个我是用springboot做的 目录结构 application.yml spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/my_bbs?use
阅读全文
摘要:pom.xml <dependency> <groupId>com.github.penggle</groupId> <artifactId>kaptcha</artifactId> <version>2.3.2</version> </dependency> KaptchaConfig.java
阅读全文
摘要:问题原因:使用idea64 run springboot项目时出现这个错误:java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException 解决方法:在pom.xml中添加以下依赖。 <dependency> <groupId>javax.x
阅读全文
摘要:前后端开发学习中,vue里面需要跨域访问后台数据 可在springboot后台里面添加个配置类即可: package com.springboottest.config; import org.springframework.beans.factory.annotation.Configurable
阅读全文
摘要:增加业务异常处理类: package com.example.demo.config; import lombok.Data; @Data public class BizException extends RuntimeException{ protected Integer errorCode;
阅读全文
摘要:我使用了hutool的 FileUtil,IdUtil,所以需要引入hutool: <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.8.11</version> </de
阅读全文
摘要:pom.xml 增加依赖(注意版本要和springboot匹配) <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-elasticsearch</artifact
阅读全文
摘要:引入依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-boot-starter</artifactId> <version>3.0.0</version> </dependency> 配置类 package c
阅读全文
摘要:一、添加依耐(pom.xml) <dependency> <groupId>org.springframework.shell</groupId> <artifactId>spring-shell-starter</artifactId> <version>2.1.4</version> </dep
阅读全文
摘要:TLog能解决什么痛点随着微服务盛行,很多公司都把系统按照业务边界拆成了很多微服务,在排错查日志的时候。因为业务链路贯穿着很多微服务节点,导致定位某个请求的日志以及上下游业务的日志会变得有些困难。 这时候很多童鞋会开始考虑上SkyWalking,Pinpoint等分布式追踪系统来解决,基于OpenT
阅读全文
摘要:1、file->new->project->spring initializr 打开pom.xml,换成ali源,快一些 <repositories> <repository> <id>aliyun-repos</id> <url>https://maven.aliyun.com/repositor
阅读全文