开发 - 双城小站

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进度热门

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

Beyond Compare 开启对class文件直接反编译并比较的支持热门


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/201811/thum-aea41542002868.png): failed to open stream: operation failed in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14
首先打开Beyond Compare,选择菜单栏:工具-文件格式 这里面是Beyond Compare当前支持的文件格式,确认一下有没有 名称为Java Class to Source,掩码为*.class 的格式 有的话 打钩即可,没有的话需要安装插件 下载插件:BCFormats.rar 下载完成后,打开你的Beyond Compare,选择菜单栏:工具-导入设置 选择你刚刚下载的文件,一直下一步直到...
阅读全文

oracle赋予权限

grant create any table to username; grant create any procedure to username; grant execute any procedure to username;  创建执行JOB权限 grant create job to 用户; grant manage scheduler to 用户; 给一个表的读取权限 grant select on 表...
阅读全文

hibernate主键生成策略及配置

1、assigned 主键由外部程序负责生成,在 save() 之前必须指定一个。Hibernate不负责维护主键生成。与Hibernate和底层数据库都无关,可以跨数据库。在存储对象前,必须要使用主键的setter方法给主键赋值,至于这个值怎么生成,完全由自己决定,这种方法应该尽量避免。 <id name="id" column="id">     <generator class="assigned" /> ...
阅读全文

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路径
阅读全文

让emlog不显示某个分类的方法

一、首页不显示某个分类的文章     修改emlog根目录include/controller/log_controller.php下     找到$sqlSegment ='ORDER BY top DESC ,date DESC';(我用的emlog5.3.1是第19行)     将这行修改为$sqlSegment ='and sorti...
阅读全文

oracle存储过程 捕获异常

在oracle存储过程中,碰到一个查询不到数据,导致抛出oracle异常的问题, 下面是示例: v_no varchar2(50);--这是一个用来存储查询出来数据的中间变量 v_sql := 'select fvalue from zy.tparam where fcode = 9999';//这是sql语句 execute immediate v_sql into v_no;--这句报错了,因为查不到数据 if v_no is null then  ...
阅读全文

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/201806/thum-29961530255080.png): failed to open stream: operation failed in C:\html\csoft\wwwroot\content\templates\MeiYing\log_list.php on line 14
1.系统变量→新建 JAVA_HOME 变量 。 变量值填写jdk的安装目录(本人是 E:\Java\jdk1.7.0) 2.系统变量→寻找 Path 变量→编辑 在变量值最后输入 %JAVA_HOME%\bin;%JAVA_HOME%\jre\bin; (注意原来Path的变量值末尾有没有;号,如果没有,先输入;号再输入上面的代码 3.系统变量→新建 CLASSPATH 变量 变量值填写   .;%JAVA_HOME%\lib;%JAVA_HOME%\l...
阅读全文