会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
铁臂阿童木
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
···
18
下一页
2017年3月8日
JAR(Spring Boot)应用的后台运行配置
摘要: 酱油一篇,整理一下关于Spring Boot后台运行的一些配置方式。在介绍后台运行配置之前,我们先回顾一下Spring Boot应用的几种运行方式: 运行Spring Boot的应用主类 使用Maven的Spring Boot插件mvn spring-boot:run来运行 打成jar包后,使用ja
阅读全文
posted @ 2017-03-08 11:51 kedarui
阅读(9674)
评论(0)
推荐(0)
2017年3月3日
eclipse svn 忽略 target目录
摘要: 这个build失败的解决方案就是不要把你项目的 target目录放在src repository 里面,还有 .project 和 .classpath最好也别放到src repository 里。具体的做法就是在新建项目的时候,在第一次commit 到 SVN 之前,先在项目的根目录设置一个 SV
阅读全文
posted @ 2017-03-03 15:42 kedarui
阅读(1434)
评论(0)
推荐(0)
2017年3月1日
Xcode 8.X Command Line Tools
摘要: Summary MacOS Sierra To install the newest Xcode Command Line Tools, you’ll need the latest version of macOS. If you’ve owned your Mac for several yea
阅读全文
posted @ 2017-03-01 15:43 kedarui
阅读(2128)
评论(0)
推荐(0)
postgres 更新数据表
摘要: 新增非空列: alter table t_test add column user_id integer; update t_test set user_id=0; alter table t_test alter column user_id SET NOT NULL;
阅读全文
posted @ 2017-03-01 12:06 kedarui
阅读(556)
评论(0)
推荐(0)
2017年2月25日
spring framework核心框架体系结构(转载)
摘要: 作者:Dreawer 很多人都在用spring开发java项目,但是配置maven依赖的时候并不能明确要配置哪些spring的jar,经常是胡乱添加一堆,编译或运行报错就继续配置jar依赖,导致spring依赖混乱,甚至下一次创建相同类型的工程时也不知道要配置哪些spring的依赖,只有拷贝,其实,
阅读全文
posted @ 2017-02-25 14:50 kedarui
阅读(2505)
评论(0)
推荐(0)
2017年2月24日
遍历List集合的三种方法
摘要: List list = new ArrayList(); list.add("aaa"); list.add("bbb"); list.add("ccc"); 方法一: 超级for循环遍历 for(String attribute : list) { System.out.println(attribute); } 方法二: 对于ArrayList来说速度比较快, 用for循环, 以size...
阅读全文
posted @ 2017-02-24 18:34 kedarui
阅读(12299)
评论(0)
推荐(3)
Spring Boot应用的后台运行配置(转载)
摘要: 作者:程序猿DD 酱油一篇,整理一下关于Spring Boot后台运行的一些配置方式。在介绍后台运行配置之前,我们先回顾一下Spring Boot应用的几种运行方式: 运行Spring Boot的应用主类 使用Maven的Spring Boot插件mvn spring-boot:run来运行 打成j
阅读全文
posted @ 2017-02-24 18:23 kedarui
阅读(5742)
评论(0)
推荐(1)
2017年2月23日
aliyun阿里云Maven仓库配置
摘要: maven仓库用过的人都知道,国内有多么的悲催。还好有比较好用的镜像可以使用,尽快记录下来。速度提升100倍。 http://maven.aliyun.com/nexus/#view-repositories;public~browsestorage 在maven的settings.xml 文件里配
阅读全文
posted @ 2017-02-23 17:43 kedarui
阅读(2868)
评论(0)
推荐(0)
2016年12月7日
【NGINX】配置文件
摘要: ######Nginx配置文件nginx.conf中文详解##### #定义Nginx运行的用户和用户组 user www www; #nginx进程数,建议设置为等于CPU总核心数。 worker_processes 8; #全局错误日志定义类型,[ debug | info | notice | warn | error | crit ] error_log /usr/local/n...
阅读全文
posted @ 2016-12-07 14:54 kedarui
阅读(210)
评论(0)
推荐(0)
2016年12月5日
linux下利用nohup后台运行jar文件包程序
摘要: Linux 运行jar包命令如下: 方式一: java -jar XXX.jar 特点:当前ssh窗口被锁定,可按CTRL + C打断程序运行,或直接关闭窗口,程序退出 那如何让窗口不锁定? 方式二 java -jar XXX.jar & &代表在后台运行。 特定:当前ssh窗口不被锁定,但是当窗口
阅读全文
posted @ 2016-12-05 22:59 kedarui
阅读(40183)
评论(0)
推荐(1)
上一页
1
2
3
4
5
6
···
18
下一页
公告