java
qq_40178497
这个作者很懒,什么都没留下…
展开
-
IDEA创建springboot项目报错Error: start.spring.io
点击IDEA setting之后,找到Http Proxy 选择Atuo-detect proxy settings 之后点击check connection弹出输入框,在输入框内输入http://start.spring.io或者是https://start.spring.io 点击ok,弹出connection successful,再重新创建项 ...原创 2020-05-14 17:54:22 · 1115 阅读 · 1 评论 -
IDEA Maven 报错Unable to import maven project: See logs for de
在IDEA菜单上选择help->Show Log In Explore日志中有报错信息:No implementation for org.apache.maven.model.path.PathTranslator was bound.while locating org.apache.maven.model.path.PathTranslatorfor field at org.apache.maven.model.interpolation.AbstractStringBasedMo原创 2020-05-14 21:26:02 · 97 阅读 · 0 评论 -
springboot接口报错Table XXX.hibernate_sequence doesn´t exist
页面报错:IDEA报错:两种解决办法:在配置文件application.properties中加上:spring.jpa.hibernate.use-new-id-generator-mappings=false在代码中的实体类注释修改为:@GeneratedValue(strategy = GenerationType.IDENTITY)原创 2020-05-16 21:08:16 · 232 阅读 · 0 评论 -
springboot驼峰命名的字段Unknown column ´下划线´ in ´field
关闭springboot的Hibernate默认命名策略SpringPhysicalNamingStrategy,即判断标识符的每一个字符,如果当前字符为大写,前一个字符和后一个字符为小写,就在大写字符的前面插入下划线。spring jpa: hibernate: naming: physical-strategy: org.hibernate.boot.model.naming.PhysicalNamingStrategyStandardImpl...原创 2020-05-16 21:32:59 · 273 阅读 · 0 评论 -
springboot设置访问端口号和访问前缀
在配置文件application.properties中加入:server.port=8081server.context-path=/springboot或者把application.properties改成application.yml,并加入:server: port: 8081 context-path: /springboot原创 2020-05-19 11:16:31 · 1835 阅读 · 3 评论 -
Linux ubuntu执行Java jar包和spring boot打包
netstat -tunlp | grep 8080该命令为查看指定端口的进程,8080换成jar包运行的指定端口,查出对应的PIDsudo kill -9 PIDPID为查出来的PID,杀死原来jar包的运行进程nohup java -jar /bootdo-2.0.0.jar > bootdolog.file 2>&1 &不指定日志输出文件:nohup java -jar /bootdo-2.0.0.jar &bootdolog.file..原创 2020-07-21 01:34:14 · 464 阅读 · 0 评论 -
springboot nginx图片上传过大无法上传 413 Request Entity Too Large
springboot图片上传过大无法上传 413 Request Entity Too Large修改springboot配置和nginx配置springboot配置如下:spring: servlet: multipart: enabled: true file-size-threshold: 0 max-file-size: 5MB max-request-size: 100MB这个是新版本springboot的配置,老版原创 2020-08-28 12:02:57 · 1166 阅读 · 0 评论 -
IDEA错误:Cannot start compilation: the output path is not spec
IDEA项目在换电脑后运行报错Cannot start compilation: the output path is not specified for module "Test",解决如下:点击File->Project Structure如图:点击红色方框内选择项目内的out文件夹。原创 2020-09-09 09:31:50 · 612 阅读 · 0 评论 -
IDEA报错 ‘Error:java: 无效的源发行版: 12‘
IDEA项目换电脑后报错Error:java: 无效的源发行版: 12,解决如下:点击File->Project Structure如图:选择红色方框中的序号8原创 2020-09-09 09:34:59 · 280 阅读 · 0 评论 -
nginx命令
启动代码格式:nginx安装目录地址 -c nginx配置文件地址nginx的停止有三种方式:从容停止1、查看进程号ps -ef|grep nginx2、杀死进程kill -QUIT 2072快速停止1、查看进程号ps -ef|grep nginx2、杀死进程kill -TERM 2132或kill -INT 2132强制停止pkill -9 nginx1、验证nginx配置文件是否正确方法一:进入nginx安装目录sbin下,输入命令./nginx -t看到如下显原创 2020-09-17 13:03:37 · 185 阅读 · 0 评论 -
Java 安装JDK
(win10系统)下载jdk安装包百度网盘链接: https://pan.baidu.com/s/1CcXX3C-RxtFijto0t-V3vg 提取码: 528s也可以自己官网下载https://www.oracle.com/java/technologies/javase/javase-jdk8-downloads.html双击安装,再下一步自定义安装路径安装执行完成,安装jre并自定义安装路径,安装完成配置环境变量右键点击桌面图标此电脑->属性配置JAVA_原创 2020-09-29 18:51:46 · 137 阅读 · 0 评论 -
IDEA链接MySQL报错08001和连接成功后不显示表
报错Connection to blog0@localhost failed. [08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.解决办法:在url后面拼接?serverTimezone=UTC连接成功后数据库不显示表通过设置解决:scheme选择当前使用的数据库...原创 2020-10-08 09:46:47 · 215 阅读 · 0 评论 -
报错java.security.InvalidKeyException: Wrong key size
DESKeySpec desKeySpec = new DESKeySpec(key.getBytes());获取的key.getBytes()长度要>=24,在小于24时会报错,添加如下判断:public static String encrypt(String encryptText, String key) { if (encryptText == null || key == null) { throw new IllegalArgumentExce原创 2021-03-28 20:34:35 · 2202 阅读 · 0 评论 -
IDEA去掉重复代码的黄色波浪线
修改IDEA设置,File->Settings->Editor->Inspections->General->Duplicated Code fragment,去掉勾原创 2021-03-28 20:41:40 · 127 阅读 · 0 评论