11 2017 档案

该文被密码保护。
posted @ 2017-11-23 14:13 这个名字想了很久~ 阅读(2) 评论(0) 推荐(0)
摘要:原文:http://blog.csdn.net/aquester/article/details/48657395 1. 编译 对于client -> nginx reverse proxy -> apache, 要想在程序中取得真实的IP,在执行nginx的configure时,必须指定参数“-- 阅读全文
posted @ 2017-11-13 10:54 这个名字想了很久~ 阅读(2047) 评论(0) 推荐(0)
摘要:原文:http://www.nginx.cn/4314.html AJAX从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header Access-Control*指令。如下所示: 1 2 3 4 5 6 7 8 9 阅读全文
posted @ 2017-11-13 10:45 这个名字想了很久~ 阅读(1792) 评论(0) 推荐(0)
摘要:原文:http://blog.csdn.net/a286352250/article/details/53157822 项目GitHub地址 : https://github.com/FrameReserve/TrainingBoot Spring Boot(十)使用@Async实现异步调用 ,标记 阅读全文
posted @ 2017-11-13 10:37 这个名字想了很久~ 阅读(10867) 评论(1) 推荐(2)
摘要:原文:http://weigang-gao.iteye.com/blog/2188739 ArrayUtils – 用于对数组的操作,如添加、查找、删除、子数组、倒序、元素类型转换等; BitField – 用于操作位元,提供了一些方便而安全的方法; BooleanUtils – 用于操作和转换bo 阅读全文
posted @ 2017-11-10 15:09 这个名字想了很久~ 阅读(3405) 评论(0) 推荐(1)
摘要:FastDateFormat fdf = FastDateFormat.getInstance("yyyy-MM-dd HH:mm:ss"); fdf.format(new Date()) import java.util.Date; import org.apache.commons.lang3.time.FastDateFormat; import org.sprin... 阅读全文
posted @ 2017-11-10 14:42 这个名字想了很久~ 阅读(1658) 评论(0) 推荐(0)
摘要:下面直接上代码: <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <version>2.3.0</version> </dependency> QuartzManager.jav 阅读全文
posted @ 2017-11-10 14:27 这个名字想了很久~ 阅读(6172) 评论(0) 推荐(0)
摘要:原文:https://www.cnblogs.com/woms/p/6145688.html 前台启动 指定启动内存大小 java -Xms1024m -Xmx1024m -Xmn1024m -server -jar boot.jar 后台启动 区别:前台启动ctrl+c就会关闭程序,后台启动ctr 阅读全文
posted @ 2017-11-10 13:59 这个名字想了很久~ 阅读(2950) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-11-10 13:23 这个名字想了很久~ 阅读(1) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2017-11-09 09:23 这个名字想了很久~ 阅读(1) 评论(0) 推荐(0)
摘要:原文:http://blog.csdn.net/joecheungdishuiya/article/details/6304993 public class test { static ResourceBundle rsb; /** * @param args * @throws Unsupport 阅读全文
posted @ 2017-11-06 14:08 这个名字想了很久~ 阅读(5247) 评论(0) 推荐(0)
摘要:HttpServletRequest httpServletRequest = (HttpServletRequest) request; HttpServletResponse httpServletResponse = (HttpServletResponse) response; //请求参数打印 ... 阅读全文
posted @ 2017-11-03 10:44 这个名字想了很久~ 阅读(7514) 评论(0) 推荐(0)
摘要:原文:http://blog.csdn.net/oh_mourinho/article/details/51463413 创建maven项目 [java] view plain copy print? <span style="font-size:14px;"><project xmlns="htt 阅读全文
posted @ 2017-11-02 09:57 这个名字想了很久~ 阅读(1279) 评论(0) 推荐(0)
摘要:原文:http://www.cnblogs.com/friends-wf/p/4227999.html mybatis中的#和$的区别 #相当于对数据 加上 双引号,$相当于直接显示数据 1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号。如:order by #user_id#, 阅读全文
posted @ 2017-11-01 14:11 这个名字想了很久~ 阅读(412) 评论(0) 推荐(0)