会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
white knight
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2019年6月3日
linux开机启动tomcat
摘要: 参考 https://blog.csdn.net/wangli61289/article/details/37924785 1.修改/etc/rc.d/rc.local vi /etc/rc.d/rc.local 2.添加下面两行脚本,记住是两行,仅仅第二行不行,必须加第一行。在/etc/rc.d/
阅读全文
posted @ 2019-06-03 15:11 white knight
阅读(111)
评论(0)
推荐(0)
编辑
2019年5月28日
sqlserver查看过滤存储过程内容
摘要: 参考 https://www.cnblogs.com/ruanraun/archive/2018/05/17/9050150.html SELECT obj.Name 存储过程名, sc.TEXT 存储过程内容 FROM syscomments sc INNER JOIN sysobjects ob
阅读全文
posted @ 2019-05-28 10:42 white knight
阅读(233)
评论(0)
推荐(0)
编辑
2019年3月12日
oracle case when
摘要: 参考 https://blog.csdn.net/yangzjchn/article/details/81019449 select case when t.content = '1' then '满意' when t.content = '2' then '一般' else '不满意' end s
阅读全文
posted @ 2019-03-12 14:52 white knight
阅读(83)
评论(0)
推荐(0)
编辑
2019年3月7日
springboot1 缓存静态文件
摘要: spring.resources.cache-period=秒数
阅读全文
posted @ 2019-03-07 13:07 white knight
阅读(103)
评论(0)
推荐(0)
编辑
2019年3月1日
mysql修改联合主键
摘要: 参考 https://blog.csdn.net/BockSong/article/details/80933477 alter table TABNAME drop primary key; alter table TABNAME add primary key(another_col,...);
阅读全文
posted @ 2019-03-01 11:27 white knight
阅读(2190)
评论(0)
推荐(0)
编辑
2019年2月19日
git命令行获取某分支代码
摘要: 参考https://www.cnblogs.com/nylcy/p/6569284.html git clone -b branch1 http://xxx.xx.xxx... git clone -b *分支* *地址*
阅读全文
posted @ 2019-02-19 15:24 white knight
阅读(519)
评论(0)
推荐(0)
编辑
2019年2月18日
IDEA查看项目对应的git地址
摘要: 参考 https://blog.csdn.net/yyyadan/article/details/85091972 项目文件夹/.git/config
阅读全文
posted @ 2019-02-18 15:41 white knight
阅读(5487)
评论(0)
推荐(0)
编辑
2019年2月12日
IDEA 中tomcat日志位置
摘要: 参考 https://blog.csdn.net/dela_/article/details/78555977 /home/dela/.IntelliJIdea2017.1/system/tomcat/Unnamed_Spring_10(当前Project的名字)
阅读全文
posted @ 2019-02-12 14:01 white knight
阅读(1527)
评论(0)
推荐(0)
编辑
2018年11月1日
Commons Daemon procrun stdout initialized
摘要: 参考 https://blog.csdn.net/qq_19865749/article/details/69664979 jvm路径错误
阅读全文
posted @ 2018-11-01 14:16 white knight
阅读(2817)
评论(0)
推荐(0)
编辑
2018年10月23日
jackson 字符串转对象
摘要: ObjectMapper mapper = new ObjectMapper(); Map<String, Object> map = mapper.readValue(str, Map.class);
阅读全文
posted @ 2018-10-23 15:35 white knight
阅读(430)
评论(0)
推荐(0)
编辑
下一页