启动
POM文件:
1 | <packaging>pom</packaging> |
Application
1 | @SpringBootApplication |
Controller
1 | @RestController |
Mybatis逆向
1 | <dependency> |
1 | public interface MyMapper<T> extends Mapper<T>, MySqlMapper<T> { |
1 | public class GeneratorDisplay { |
最外层 genenratorConfig.xml
1 | <?xml version="1.0" encoding="UTF-8"?> |
整合配置mybatis
1 | <!--pagehelper--> |
application.properties
1 | spring: |
1 | @SpringBootApplication |
Swagger
1 | <!-- knife4j 接口文档工具 --> |
1 | @Configuration |
1 | @Slf4j |
腾讯云短信
1 | <!-- 第三方云厂商相关的依赖 --> |
1 | @Component |
1 | @Component |
1 | @Autowired |
redis
工具类
1 | <!-- apache 工具类 --> |
问题:
启动redis服务,可以使用127.0.0.1配置并使用访问redis,但是换成IP地址就无法访问
解决:
1. 打开 redis.windows.config文件(linux对应redis.conf文件)将 NETWORK 下 bind 127.0.0.1 注释掉 并将 protected-mode yes 改为 protected-mode no; 2. 同理修改 redis.windows.server.config 文件中相应内容; 3. 重启 Redis 服务,即可使用 IP 访问 Redis了;
1 | <!-- 引入 redis 依赖 --> |
拦截器
1 | @Slf4j |
1 | @Configuration |
异常封装
1 | public class GraceException { |