springboot
hooyoungzhang
java探索者
展开
-
Springboot3- 整合redis
1、单机版redis 配置(引入依赖略) spring.redis.host = redis服务器ip spring.redis.port = redis服务端口 2、整合redis集群 spring.redis.cluster.nodes = 192.168.1.12:7001, 192.168.1.12:7002,192.168.1.13:7001,192.168.1.13:7002 ...原创 2020-03-08 23:52:18 · 334 阅读 · 0 评论 -
springboot-2整合mysql连接数据库报错
1、springboot自己添加的application.properites文件,字体显示灰色,下方带波浪线,提示“this inspection reports all properties not referenced from outside of the properties file” 参考这个博客 2.3方案解决了该问题 2、spring boot 项目报错 java.sql.SQL...原创 2020-03-08 23:57:17 · 192 阅读 · 0 评论 -
Springboot-1、项目启动
1、创建maven项目。 2、引入springboot父工程。 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <versi...原创 2020-03-05 15:10:20 · 176 阅读 · 0 评论