springboot引入postgresql ①pom引入依赖<dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.4.1212</version></depende ...
分类:
数据库 时间:
2021-01-29 12:21:36
阅读次数:
0
1、问题原因是tomcat和jdk版本冲突 2、解决方案: 不断调整<artifactId>tomcat-embed-jasper</artifactId>的版本 我调整为<tomcat-jsp-version>9.0.13</tomcat-jsp-version> 就可以运行了 ...
分类:
Web程序 时间:
2021-01-29 12:17:13
阅读次数:
0
1、git的安装:(我是windows) 查看git版本号(未安装则不会出现版本号,去官网下载对应版本的git即可) git --version 在桌面空白处右键,会出现git gui here和git bash here 2、github上头像不显示的问题及解决: 修改hosts文件:C:\Win ...
分类:
其他好文 时间:
2021-01-29 12:09:52
阅读次数:
0
yml spring: data: elasticsearch: client: reactive: endpoints: 192.168.209.160:9200 connection-timeout: 10000#链接到es的超时时间,毫秒为单位,默认10秒(10000毫秒) socket-ti ...
分类:
编程语言 时间:
2021-01-28 12:03:55
阅读次数:
0
1. 安装n管理包 终端使用npm install -g n命令全局安装, 安装成功后在终端输入n --version或n查看。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ~ npm install -g n /usr/local/bin/n - ...
分类:
其他好文 时间:
2021-01-27 14:02:06
阅读次数:
0
Java多线程 多线程的实现1 继承Thread 重写run() start() 1.为什么要重写run()方法? 因为run()方法是用来封装线程要执行的代码的。 2.run()方法和start()方法的区别? 直接使用run()方法并不是启动多线程,使用start()才是启动线程,然后由JVM调 ...
分类:
编程语言 时间:
2021-01-27 13:58:25
阅读次数:
0
Springboot01——HelloWolrd 准备工作 环境: java version 1.8 Maven- 3.6 SpringBoot 2.x 最新版 版本检测命令: java -version mvn -v 开发工具 IntellliJ IDEA (2020版) Spring官网 Spr ...
分类:
编程语言 时间:
2021-01-27 13:40:26
阅读次数:
0
-- 1064 -- 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use nea ...
分类:
其他好文 时间:
2021-01-27 13:38:40
阅读次数:
0
多台服务器Docker-compose 安装zookeeper集群 安装docker-compose zookeeper安装与配置 检查集群 安装docker-compose ? 安装docker:sudo apt-get install docker.io ? 开机启动docker sudo sy ...
分类:
其他好文 时间:
2021-01-27 13:35:09
阅读次数:
0
第一种:json-lib 依赖: <dependency> <groupId>net.sf.json-lib</groupId> <artifactId>json-lib</artifactId> <version>2.4</version> <classifier>jdk15</classifie ...
分类:
其他好文 时间:
2021-01-27 13:33:47
阅读次数:
0