会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
远方的灯塔
追求技术本质,不要迷恋花拳绣腿。
博客园
首页
新随笔
管理
上一页
1
···
12
13
14
15
16
17
18
19
20
···
22
下一页
2021年12月7日
【Java高级工程师蜕变之路】006 ErrorContext的机制分析
摘要: ErrorContext
阅读全文
posted @ 2021-12-07 21:39 灯塔下的守望者
阅读(22)
评论(0)
推荐(0)
【Java高级工程师蜕变之路】004 MyBatis源码剖析
摘要: 1
阅读全文
posted @ 2021-12-07 21:38 灯塔下的守望者
阅读(19)
评论(0)
推荐(0)
2021年12月5日
MyBatis缓存的概念
摘要: 本文介绍了缓存的概念,并着重介绍了MyBatis对缓存的支持,包括一级缓存和二级缓存。一级缓存是SqlSession级别的,而二级缓存是Mapper级别的,能够提高系统的响应速度。
阅读全文
posted @ 2021-12-05 01:01 灯塔下的守望者
阅读(58)
评论(0)
推荐(0)
2021年11月16日
如何配置mac环境下的JAVA_HOME
摘要: 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 灯塔下的守望者
阅读(137)
评论(0)
推荐(0)
2021年5月27日
css使用flex布局实现自适应
摘要: <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 灯塔下的守望者
阅读(467)
评论(0)
推荐(0)
2021年3月2日
JDK1.8中IndexedPropertyDescriptor的改变对BeanUtils的影响
摘要: // #134645 JDK1.8中IndexedPropertyDescriptor的改变对BeanUtils的影响 // 参考 https://www.iteye.com/blog/caotan-2319122 // public AutoArrayList getSnsGroupFronts(
阅读全文
posted @ 2021-03-02 17:38 灯塔下的守望者
阅读(78)
评论(0)
推荐(0)
2021年2月23日
tomcat生成ssl证书并发布浏览器信任的https服务
摘要: 之前已经有一篇文章写了tomcat配置https,但是没有设置信任,这样在某些浏览器会发出警告阻止访问。 这篇文章来探讨一下怎么设置证书信任。 1、生成服务器证书: CMD进入JDK安装目录:cd F:\java\j2sdk1.8.0.231\bin。输入命令: keytool -genkey -v
阅读全文
posted @ 2021-02-23 15:16 灯塔下的守望者
阅读(748)
评论(0)
推荐(0)
2021年1月22日
spring AOP——AfterReturningAdvice接口实现方法执行后通知
摘要: spring AOP——AfterReturningAdvice接口实现方法执行后通知 <bean id="kmsCommonAdviceService" class="com.landray.kmss.kms.common.service.KmsCommonAdviceService"> </be
阅读全文
posted @ 2021-01-22 16:32 灯塔下的守望者
阅读(362)
评论(2)
推荐(0)
2021年1月21日
redis的安装启动与关闭
摘要: #安装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 灯塔下的守望者
阅读(91)
评论(0)
推荐(0)
2020年12月22日
Oracle使用PL/SQL修改时间
摘要: alter session set nls_date_language='american'; select * from kms160.kms_exam_unified_activity for update;
阅读全文
posted @ 2020-12-22 15:43 灯塔下的守望者
阅读(495)
评论(0)
推荐(0)
2020年12月21日
Oracle的system表空间用满解决
摘要: 更改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 灯塔下的守望者
阅读(962)
评论(0)
推荐(0)
2020年12月11日
SpringBoot项目启动与关闭脚本
摘要: 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 灯塔下的守望者
阅读(286)
评论(0)
推荐(0)
2020年12月9日
springboot mybatis启动初始化数据库
摘要: https://segmentfault.com/a/1190000021705562
阅读全文
posted @ 2020-12-09 15:16 灯塔下的守望者
阅读(713)
评论(0)
推荐(0)
springboot mybatis多数据库支持
摘要: 1.配置 application-dev.properties # # MyBatis配置 # #开启驼峰命名 mybatis.configuration.map-underscore-to-camel-case=true mybatis.configuration.database-id=${da
阅读全文
posted @ 2020-12-09 14:15 灯塔下的守望者
阅读(634)
评论(0)
推荐(0)
2020年12月1日
Tomcat配置https访问
摘要: 首选搞清楚自签名证书与证书机构颁发的证书的区别 签名证书:由权威颁发机构颁发给bai服务器或者个人用于证明自己身份的东西,默认客户端都是信任的。主要目的是用来加密和保证数据的完整性和不可抵赖性。 自签名证书:由服务器自己颁发给自己,用于证明自己身份的东西,非权威颁发机构发布,默认客户端都是不信任的。
阅读全文
posted @ 2020-12-01 14:13 灯塔下的守望者
阅读(249)
评论(0)
推荐(0)
上一页
1
···
12
13
14
15
16
17
18
19
20
···
22
下一页
公告