SpringBoot - 双城小站

Springboot修改启动日志的Spring字符


Warning: getimagesize(): SSL operation failed with code 1. OpenSSL Error messages: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14

Warning: getimagesize(): Failed to enable crypto in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14

Warning: getimagesize(https://www.a-nan.com/content/uploadfile/202006/7df81591064078.png): failed to open stream: operation failed in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14
Springboot启动的时候,会在控制台输出如下图所示的字符 (standard) 那么这个能自定义吗?答案是可以的 只需要在application.properties/application.yml同级目录下建立banner.txt文件 SpringBoot 的启动输出就会被更改了, 比如我自定义为a-nan 最后附几个可以生成这种字符的网站: 1.http:/...
阅读全文

解决在SpringBoot反射类中使用@Autowired不生效的问题

由于某些原因,需要使用java的反射机制来创建类 并且在类内使用@Autowired自动装载 但Spring的@Autowired注解,并不能对反射创建的类进行注入, 导致出现java.lang.reflect.InvocationTargetException: null 解决方案如下: 1.new一个自身类型的对象,这个对象不要加@Autowired注解,需要是公开(public)的 2.在需要反射的类中,创建init...
阅读全文

SpringBoot进度热门

学习使用springboot进行开发已经一周了,记录一下自己的进程,后续更新 1、搭建springboot环境 2、JPA 3、hibernate集成 4、定时器 5、AOP切面日志打印
阅读全文

Spring Boot项目在tomcat启动时,报JDK错误解决方案


Warning: getimagesize(): SSL operation failed with code 1. OpenSSL Error messages: error:1407742E:SSL routines:SSL23_GET_SERVER_HELLO:tlsv1 alert protocol version in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14

Warning: getimagesize(): Failed to enable crypto in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14

Warning: getimagesize(https://www.a-nan.com/content/uploadfile/201807/thum-ca7c1530860742.png): failed to open stream: operation failed in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14
报错如图: 经查,是因为项目人员在部署时,直接修改setclasspath.bat文件, 改了其中的%JAVA_HOME%,直接写死JDK路径 解决方案如下:把写死的JDK路径重新改为%JAVA_HOME% 然后使用SET JAVA_HOME的方式,来指定JDK路径
阅读全文