- 浏览: 156775 次
-
最新评论
-
不死咸鱼:
需要购买视频
JBPM4+ExtJS实战视频教程 -
iame:
good,打算在新项目中使用,thanks
javascript模版引擎-tmpl的bug修复与性能优化 -
lhf1990729:
图片打不开啊。少年。。
[置顶] 通向架构师的道路(第十四天)Axis2 Web Service安全(二) -
gtrgtr:
不错...
java.lang.IllegalStateException: Immutable bitmap passed to Canvas constructor错误解决办法 -
nodejs:
这个世界这是怎么了?http://nodejs.iteye.c ...
代码之谜 - 为什么 jdk 中把 String 类设计成 final
文章列表
获取的参数使用
str= new String(str.getBytes("ISO-8859-1"), "utf-8");
http://panyongzheng.iteye.com/blog/1413289
- 2012-07-10 22:15
- 浏览 640
- 评论(0)
Spring温故知新:WEB篇(二)Hello,World!
http://www.2cto.com/kf/201108/102113.html
- 2012-07-10 20:21
- 浏览 661
- 评论(0)
1.下载spring-3.2.0.M1-dist.zip包
http://www.springsource.org/download/
2.下载依赖包commons-logging.jar
http://commons.apache.org/logging/download_logging.cgi
3.Spring web 配置
http://www.2cto.com/kf/201108/102113.html
- 2012-07-09 16:27
- 浏览 817
- 评论(0)
官方文档提供了两种最佳实践
1.xml中配置bean的依赖
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schem ...
- 2012-07-09 14:43
- 浏览 816
- 评论(0)
<dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>3.0.5.RELEASE</version>
</dependency>
<dependency>
<groupId>velocity</groupId>
< ...
- 2012-07-09 14:33
- 浏览 1048
- 评论(0)
Spring框架集成FreeMarker
http://blog.sina.com.cn/s/blog_5ca9fdd80100fxx5.html
- 2012-07-09 11:31
- 浏览 661
- 评论(0)
Spring velocity
http://xumingrencai.iteye.com/blog/1521549
Spring MVC 与 Velocity 整合
http://hi.baidu.com/zhangxuan1224/blog/item/6c7b795900ecb6222934f07f.html
Spring中使用Velocity模板
http://blog.sina.com.cn/s/blog_5ca9fdd80100fxx6.html
velocity在spring中的使用
http://crazycat03.iteye.com/b ...
- 2012-07-09 10:55
- 浏览 869
- 评论(0)
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.logging.Handler;
import javax.swing.text.StyledEditorKit.ForegroundAction;
public class Chapter1 {
public static void main(String[] args) throws NumberForm ...
- 2012-07-06 17:18
- 浏览 689
- 评论(0)
Android是单线程模型,这意味着Android UI操作并不是线程安全的并且这些操作必须在UI线程中执行,所以你单纯的new一个Thread并且start()是不行的,因为这违背了Android的单线程模型。那么如何用好多线程呢?总结一下:
...
Java编程思想第4版.pdf
http://download.csdn.net/detail/wodwl/4414325
Spring2.5-中文参考手册
http://download.csdn.net/detail/wodwl/4410218
Spring注解讲解
http://hanyexiaoxiao.iteye.com/blog/410123
- 2012-07-06 15:16
- 浏览 780
- 评论(0)
配置数据库连接
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
<property name="driverClassName">
<value>com.mysql.jdbc.Driver</value>
</property>
<property name="url"&g ...
- 2012-07-06 14:04
- 浏览 624
- 评论(0)