上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页
摘要: echo 'export JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/' >> ~/.bash_profile source ~/.bash_profile 阅读全文
posted @ 2021-11-16 13:45 灯塔下的守望者 阅读(128) 评论(0) 推荐(0) 编辑
摘要: <div id="box"> <div class="col"> <div class="left"> <div class="item"> <div class="num">56</div> <div class="text">上传知识</div> </div> </div> <div class 阅读全文
posted @ 2021-05-27 00:12 灯塔下的守望者 阅读(438) 评论(0) 推荐(0) 编辑
摘要: // #134645 JDK1.8中IndexedPropertyDescriptor的改变对BeanUtils的影响 // 参考 https://www.iteye.com/blog/caotan-2319122 // public AutoArrayList getSnsGroupFronts( 阅读全文
posted @ 2021-03-02 17:38 灯塔下的守望者 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 之前已经有一篇文章写了tomcat配置https,但是没有设置信任,这样在某些浏览器会发出警告阻止访问。 这篇文章来探讨一下怎么设置证书信任。 1、生成服务器证书: CMD进入JDK安装目录:cd F:\java\j2sdk1.8.0.231\bin。输入命令: keytool -genkey -v 阅读全文
posted @ 2021-02-23 15:16 灯塔下的守望者 阅读(672) 评论(0) 推荐(0) 编辑
摘要: spring AOP——AfterReturningAdvice接口实现方法执行后通知 <bean id="kmsCommonAdviceService" class="com.landray.kmss.kms.common.service.KmsCommonAdviceService"> </be 阅读全文
posted @ 2021-01-22 16:32 灯塔下的守望者 阅读(354) 评论(2) 推荐(0) 编辑
摘要: #安装GCC9 echo "deb http://mirrors.163.com/debian sid main contrib non-free" >> $/Desktop/install.list cd /etc/apt/sources.list.d sudo cp -r $/Desktop/i 阅读全文
posted @ 2021-01-21 15:18 灯塔下的守望者 阅读(82) 评论(0) 推荐(0) 编辑
摘要: alter session set nls_date_language='american'; select * from kms160.kms_exam_unified_activity for update; 阅读全文
posted @ 2020-12-22 15:43 灯塔下的守望者 阅读(472) 评论(0) 推荐(0) 编辑
摘要: 更改system表空间的数据文件SYSTEM.dbf分配空间。 alter database datafile 'F:\software\oraclexe\app\oracle\oradata\XE\SYSTEM.DBF' resize 10G; 查看空间分配 select tablespace_n 阅读全文
posted @ 2020-12-21 16:01 灯塔下的守望者 阅读(941) 评论(0) 推荐(0) 编辑
摘要: APP_VERSION=2.1.1 APP_NAME=bugucms-plugin-container-${APP_VERSION}.jar #使用说明,用来提示输入参数 usage() { echo "Usage: sh scriptName.sh [start|stop|restart|stat 阅读全文
posted @ 2020-12-11 16:33 灯塔下的守望者 阅读(272) 评论(0) 推荐(0) 编辑
摘要: https://segmentfault.com/a/1190000021705562 阅读全文
posted @ 2020-12-09 15:16 灯塔下的守望者 阅读(696) 评论(0) 推荐(0) 编辑
摘要: 1.配置 application-dev.properties # # MyBatis配置 # #开启驼峰命名 mybatis.configuration.map-underscore-to-camel-case=true mybatis.configuration.database-id=${da 阅读全文
posted @ 2020-12-09 14:15 灯塔下的守望者 阅读(616) 评论(0) 推荐(0) 编辑
摘要: 首选搞清楚自签名证书与证书机构颁发的证书的区别 签名证书:由权威颁发机构颁发给bai服务器或者个人用于证明自己身份的东西,默认客户端都是信任的。主要目的是用来加密和保证数据的完整性和不可抵赖性。 自签名证书:由服务器自己颁发给自己,用于证明自己身份的东西,非权威颁发机构发布,默认客户端都是不信任的。 阅读全文
posted @ 2020-12-01 14:13 灯塔下的守望者 阅读(239) 评论(0) 推荐(0) 编辑
摘要: -- 批量生成版本 DECLARE fk_str VARCHAR2(2000) := ''; BEGIN FOR i IN 23 .. 25 loop fk_str := LOWER(RAWTOHEX(SYS_GUID())); INSERT INTO ekp.KMS_KNOWLEDGE_BASE_ 阅读全文
posted @ 2020-11-25 16:24 灯塔下的守望者 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 创建用户 打开命令提示框输入以下内容 1.输入:sqlplus /nolog​ //进入oralce控制台 2.输入:conn /as sysdba​ //以管理员权限登录 3.输入:create user abc identified by 123456;​ //创建用户名adc密码123456 阅读全文
posted @ 2020-11-24 17:23 灯塔下的守望者 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 服务里面本来应该有OracleService的(或者是Express版的OracleServiceXE),而服务列表没有此服务项,而启动数据库时出现: TNS监听程序当前无法识别连接描述符中请求的服务 ORA-12518 TNS监听程序无法分发客户机连接 在sqlplus所在目录 里面 运行 lsn 阅读全文
posted @ 2020-11-24 14:00 灯塔下的守望者 阅读(999) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 22 下一页