上一页 1 2 3 4 5 6 ··· 26 下一页
该文被密码保护。 阅读全文
posted @ 2015-06-15 17:40 samu 阅读(1) 评论(0) 推荐(0) 编辑
摘要: spring.security提供了一种身份认证框架,开发者可以在这个框架中实现各种方式的用户身份管理,比如:LDAP、MYSQL、OAUTH、Mongo等等。spring.security认证步骤:1、配置类WebSecurityConfigurerAdapter 该类中通过configure ... 阅读全文
posted @ 2015-06-15 13:43 samu 阅读(2330) 评论(0) 推荐(0) 编辑
摘要: // Accumulate names into a List List list = people.stream().map(Person::getName).collect(Collectors.toList()); // Accumulate names into a... 阅读全文
posted @ 2015-06-15 12:12 samu 阅读(485) 评论(0) 推荐(0) 编辑
摘要: Collection.stream() / parallelStream()1. Stream1)Filter stringCollection .stream().filter((s) -> s.startsWith("a")) .forEach(System.out::println);2)So... 阅读全文
posted @ 2015-06-15 12:03 samu 阅读(314) 评论(0) 推荐(0) 编辑
摘要: Read / Write Excel file in Java using Apache POI2014-04-18BYDINESHLEAVE A COMMENTAbout a year or two ago I was working with finance team where they wa... 阅读全文
posted @ 2015-06-09 19:43 samu 阅读(354) 评论(0) 推荐(0) 编辑
摘要: package demo.future; import java.util.ArrayList;import java.util.List;import java.util.concurrent.*; /** * 试验 Java 的 Future 用法 */public class FutureTe... 阅读全文
posted @ 2015-06-09 13:03 samu 阅读(697) 评论(0) 推荐(0) 编辑
摘要: Nginx的反向代理通常用来映射内网中提供的Apache、IIS、Lighttpd服务,以实现负载均衡;同时,由于动态服务程序运行在内网,服务器的整体安全性也有所提高,那么怎样用nginx设置SSL的反向代理呢?使用nginx设置SSL的优点不少:易用性:nginx安装、升级简单,nginx的平滑升... 阅读全文
posted @ 2015-06-09 12:47 samu 阅读(1014) 评论(0) 推荐(0) 编辑
摘要: 引言: 在JQuery的Ajax POST请求中,进行请求,其中的中文在后台,显示为乱码,该如何解决呢?问题的引入: var regid = $('#oregion').combobox('getValue'); //var sname = $('#sname').val(); var sname ... 阅读全文
posted @ 2015-06-09 12:38 samu 阅读(330) 评论(1) 推荐(0) 编辑
摘要: https://www.prestashop.com/en/system-requirements 阅读全文
posted @ 2015-06-08 20:50 samu 阅读(110) 评论(0) 推荐(0) 编辑
摘要: http://www.kuqin.com/shuoit/20140615/340573.html1SSL单向认证概念 当客户端(服务请求方)向服务端(服务提供方)发起请求时,服务器端需要向客户端提供认证。服务端需要生成一个keystore和一个服务器密钥对儿(公钥和私钥),客户端需要生成一个tru... 阅读全文
posted @ 2015-06-08 11:05 samu 阅读(253) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 26 下一页