- 博客(10)
- 收藏
- 关注
转载 maven deploy到仓库时同时打包源码
<build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> ...
2018-02-01 16:30:00
1056
转载 tomcat配置https 通过.pem和.key生成keystore
到手的有两个文件:private.key和xxx.pem openssl pkcs12 -export -inkey private.key -in xxx.pem -name test -out test.p12 keytool -importkeystore -srckeystore...
2017-12-27 18:02:00
1446
转载 通用excel和csv导出方法
maven依赖 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId&g...
2017-06-23 09:39:00
194
转载 gitlab使用外部nginx
vim /etc/gitlab/gitlab.rbnginx['enable'] = falsegitlab-ctl reconfigurecp /var/opt/gitlab/nginx/conf/gitlab-http.conf/gitlab-http.conf /etc/n...
2017-04-20 13:32:00
1141
转载 spring boot配置简单rest服务,访问404
pom.xml <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId>...
2016-12-01 15:13:00
200
转载 gitlab的smtp配置阿里企业邮箱
vim /etc/gitlab/gitlab.rb 添加如下配置 gitlab_rails['smtp_enable'] = true gitlab_rails['smtp_address'] = "smtp.mxhichina.com" gitlab_rails['smtp_port...
2016-11-28 13:45:00
1932
转载 QT4.8 View定时手动刷新model
用QTimer QTimer *timer = new QTimer(this); connect(timer, SIGNAL(timeout()), this, SLOT(update())); timer->start(1000); 调用相关view的rese...
2016-09-23 19:38:00
862
转载 jquery 表单转json
$.fn.serializeObject = function(){ var o = {}; var a = this.serializeArray(); $.each(a, function() { if (o[this.name]) { ...
2016-09-08 10:40:00
131
转载 用python3.5写的搜狗壁纸爬虫
https://github.com/zeratuu/sg_wp_spider 转载于:https://my.oschina.net/u/2423298/blog/719998
2016-07-29 11:46:00
130
转载 jersey返回动态生成的zip文件
@GET @Path("download/{id}") @Produces("application/zip")// @Produces(MediaType.APPLICATION_OCTET_STREAM) public Response downloadZ...
2016-06-05 14:03:00
230
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人