06 2019 档案
摘要:pom文件 重新启动程序: 详细参考以下博客 https://blog.csdn.net/qq_35915384/article/details/80203768、 一种简洁可视化的监控报表spring-boot-admin 服务端: 新创建一个spring-boot项目 https://githu
阅读全文
摘要:package com.example.demo.exception; import org.springframework.web.bind.annotation.ControllerAdvice; import org.springframework.web.bind.annotation.ExceptionHandler; import org.springframework.web.b...
阅读全文
摘要:application-{profile}.properties 按照格式创建两个配置文件,一个DEV环境,一个测试环境 修改其端口:
阅读全文
摘要:详解传送门:https://www.cnblogs.com/warking/p/5710303.html
阅读全文
摘要:第一种: server.port=0 第二种: //自定义一个范围 server.port=${random.int[1024,9999]}
阅读全文
摘要:它表示当前pom文件从spring-boot-starter-parent继承下来,在spring-boot-starter-parent中提供了很多默认的配置,这些配置可以大大简化我们的开发。 通过继承spring-boot-starter-parent,默认具备了如下功能: Java版本(Jav
阅读全文
摘要:spring-boot项目 配置MYSQL驱动 maven pom文件中增加依赖 在application.properties中加入配置(注:我的密码数据库密码是空) 在数据库中,新建一张表,放入一丢丢的数据(注意:设计表时,要改表的字符集,排序规则,否则乱码) 在项目中DemoApplicati
阅读全文