加载中
50 Java Interview Questions

http://robaustin.wikidot.com/50-java-interview-questions

2015/07/02 02:27
93
junit4 assertThat详解

为了看懂某同学写的TDD文章。assertThat第一次见。

2015/06/28 01:56
334
How to control cache in JSP page?

To start, the complete set is: httpResponse.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); // HTTP 1.1. httpResponse.setHeader("Pragma", "no-cache"); // HTT...

2015/04/03 20:55
62
Caching Tutorial for Web Authors and Webmasters

https://www.mnot.net/cache_docs/

2015/03/13 18:08
50
点击back按钮的时候是否会重新向server发起请求

当点击back button的时候,如果前一个页面是GET请求,并且页面没有过期(通过header中的expires判断),直接使用浏览器的缓存,如果页面已经过期则重新发起GET请求, 如果前一个页面是POST请...

2015/03/13 17:51
55
Why session not timeout

Investigate why session timeout not work in Basic auth.

2015/03/03 17:14
109
JAAS authentication in Tomcat example

In this tutorial you will learn how to configure JAAS authentication in Tomcat using the HTTP Basic authentication scheme. Introduction Tomcat provides a default JAAS Realm impl...

2015/03/02 21:04
182
InstallCert and Java 7

very valuable..

2015/02/11 03:12
1.3K
ubuntu12.04 美化eclipse

IDEA可以弄得那么酷炫,Eclipse可否?

2015/02/03 03:18
2.6K
HttpClient basic authentication

目前我找到的最好的解释Basic Authentication的博客

2015/01/13 00:58
606
Apache HttpClient POST数据(https)

测试用的httpclient版本 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.1.2</version> <scope>test</scope>...

2014/12/09 23:06
6K
A Review of 5 Java JSON Libraries

原文: http://www.rojotek.com/blog/2009/05/07/a-review-of-5-java-json-libraries/#comments json-simple的例子: http://www.mkyong.com/java/json-simple-example-read-and-write-json...

2014/12/09 21:38
85
tomcat7配置https

https://localhost:8443

2014/11/26 00:46
92
不同版本(2.3,2.4,2.5) web.xml 的web-app头信息

Servlet 2.3 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd"> <...

2014/11/24 13:29
629
eclipse指定jvm

http://stackoverflow.com/questions/142357/what-are-the-best-jvm-settings-for-eclipse/3275659#3275659 升级了jdk8 后eclipse打不开了,不想多折腾 open eclipse.ini -vm C:\w\servers\...

2014/11/11 17:50
100
REST笔记

GET,PUT,DELETE,POST,HEAD,OPTIONS 只有POST不是idempotent其它全是。 URI格式 scheme://host:port/path?queryString#fragment MIME的格式 type/subtype;name=value;name=value比如: text/p...

2014/07/24 15:47
79
Jaxb2 实现JavaBean与xml互转

http://zhuchengzzcc.iteye.com/blog/1838702

2014/07/20 14:12
431
java web service索引

正规军: 基于SOAP的JAX-RPC , JAX-WS, 基于RESTful的JAX-RS 杂牌:Apache系列。 书 RESTful Java with JAX-RS 2.0 RESTful Web Services with Dropwizard 以下这篇博客就是使用了JAX RS ht...

2014/06/11 00:48
275
How to solve JAR hell with a Parent Last Classload

Java Classpath Hell or Jar Hell is a term used in the Java community when a wrong class is loaded from a wrong Jar into the runtime causing the system not to function properly. ...

2014/06/11 00:39
120
Comparing Two High-Performance I/O Design Patterns

Comparing Two High-Performance I/O Design Patterns by Alexander Libman with Vladimir Gilbourd November 25, 2005 Summary This article investigates and compares different design p...

2014/06/10 00:40
137

没有更多内容

加载失败,请刷新页面

返回顶部
顶部