- 浏览: 119430 次
- 性别:
- 来自: 广州
-
最新评论
-
Kevin_jiang2011:
能直接在,代码里面配置吗?
Spring+CXF配置HTTP代理访问Internet -
xbiji:
不能用啊!!!!!!!!!!!!!!!!!!!!!!1
JQuery获取页面高度,页面宽度,窗口高度,窗口宽度 -
ben_liang:
# <http-conf:proxyAuthoriza ...
Spring+CXF配置HTTP代理访问Internet -
navy0168:
package com;import java.io. ...
解压缩
文章列表
转自:http://wlh.iteye.com/
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.Enumeration;
import org.apache.tools.zip.ZipEntry;
import org.apache.tools.zi ...
转自:http://www.iteye.com/topic/545378
源于作者:jenlp110 的 一道面试题
文章分类:Java编程
一个画图程序 要求打印出 :
int i=5;
1 2 3 4 5
16 17 18 19 6
15 24 25 20 7
14 23 22 21 8
13 12 11 10 9
int i=6
1 2 3 4 5 6
20 21 22 23 24 7
19 32 33 34 25 8
18 31 36 35 26 9
1 ...
参考资料:http://developer.yahoo.com/performance/rules.html
参考资料:http://www.iteye.com/topic/385988
需要花时间去看的:http://www.iteye.com/news/4781-2008-wangye-sheji-kaifa-ziyuan
书籍:《高性能网站建设指南》
书籍:《高性能网站建设进阶指南》Web开发者性能优化最佳实践
http://conray.iteye.com/
http://startor.iteye.com/?page=7&show_full=true
http://www.cnblogs.com/oracleDBA/
http://blog.csdn.net/silindong/archive/2008/08/03/2761543.aspx
http://tomcat.apache.org/tomcat-5.5-doc/building.html
http://jiwenke.iteye.com/?page=3
http://tech.ddvip.com/2009-01/1232097337106062.html
转:http://hi.baidu.com/hougbin/blog/item/54a529d02e9b4d84a1ec9c43.html 上善若水
public void saveSomething(String param) throws Exception() {
try{
doSomething.......;
}catch(Exception e) {
e.printStackTrace();
}
}
2.问题分析
...
转:http://www.blogjava.net/Hafeyang/archive/2010/01/12/309178.html
Spring+CXF配置HTTP代理访问Internet
一个典型的CXF Webservice项目部署到正式环境后,服务器不能访问外网,只能通过代理访问外网,找了很多资料,刚开始想法是不用Spring的配置文件,直接用java编程访问webservice。在java的Http请求中使用代理的方法如下:
String authentication="username:password";//用户+”:”+密码
String ...
转自:http://www.ibm.com/developerworks/cn/java/j-lo-spring25-ioc/
使用 Spring 2.5 注释驱动的 IoC 功能
文档选项
<script type="text/javascript"></script>
打印本页
<noscript></noscript>
转自:http://blog.csdn.net/liuzhenwen/archive/2009/03/12/3983952.aspx
需要使用Spring来实现一个Cache简单的解决方案,具体需求如下:使用任意一个现有开源Cache Framework,要求可以Cache系统中Service或则DAO层的get/find等方法返回结果,如果数据更新(使用Create /update/delete方法),则刷新cache中相应的内容。 根据需求,计划使用Spring AOP + ehCache来实现这个功能,采用ehCache原因之一是Spring提供了ehCache的支持,至于为何仅仅支持e ...
$(function(){
new JCore.CheckCode($('#checkCode'),'${base}/CheckCode.svl');
});
<input name="checkCode" type="text" class="input" id="checkCode" size="15"/>
@SuppressWarnings("serial")
public class ImageCaptchaServlet extend ...
转自:http://dakulaliu.iteye.com/blog/234045
1. 开发人员对Controller的代码实现变得更加灵活,不需要继承任何AbstractController等Controller。 2. 可以通过@Controller注解声明将该类的实例添加到Spring 容器中管理,而无需通过Spring MVC的配置 ...
转自:http://hi.baidu.com/shmily_sky/blog/item/616e9e3dfdc5bd05baa167a3.html
最近一直在研究这方面的问题,在java写文件中,通常会使用FileOutputStream和 FileWriter,FileWriter只能写文本文件。 FileOutputStream也经常结合BufferedOutputStream。因为实际应用中写文本文件的情况占了大多数。所以下面测试用不同 的方式生成一个相同行数、大小相同的文件的三种不同方式。
import java.io.File;
import java.io.File ...
Designing object-oriented software is hard, and designing reusable object-oriented software is even harder. You must find pertinent objects, factor them into classes at the right granularity, define class interfaces and inheritance hierarchies, and establish key relationships among them. Your design ...
eclipse-tomcat配置问题
http://www.cnblogs.com/qiongchun/archive/2008/08/02/eclipse-tomcat.html
问题:
1.reload this context
operation failed
解决:preferences->tomcat->tomcat manager app
managerApp username:admin
managerApp password:admin
(根据你的tomcat安装目录下的文件E ...