Ryan's Java world!

something about Java and opensource!

BlogJava 首页 新随笔 联系 聚合 管理
  51 Posts :: 25 Stories :: 59 Comments :: 0 Trackbacks

我的评论

国人榜样!!
re: 用Google构筑自己的门户 冰雨 2006-10-27 18:25  
晕, 从一推出我都开始使用了, 你现在才用啊, 哎.
喜欢关注些网站的文章和新闻, 一个一个上去看麻烦, 使用google 可以把rss聚合起来, 很爽.

如果聚合的东西多了, 感觉下载页面很满, 也不好看,
不过, 现在google 的英文页面跟人性化, 多个标签, 看看俺的个性化主页.
http://blog.matrix.org.cn/page/icess?entry=google_pages
用jsp开发的.
re: Hibernate 3.2 released 冰雨 2006-10-17 19:01  
我还是比较喜欢那些比较轻量级的容器,虽然说现在 Spring 和 Hibernate都越来越重了,它们的 jar 包都超过 2M 了。

jar 包的大小和是不是轻量级框架有关系吗?
哦 知道了,
谢谢哦...............
maybe lz can see this : Wicket vs Tapestry
and JSF vs struts.

to see Wicket , visit here:
http://www.blogjava.net/51AOP/archive/2006/08/05/61909.html
呵呵喜欢就好啊, 刚刚过完考试周 等有时间也来看看.
我还没有使用过, 刚把 JEE5.0 的东西下载下来, 这周要考试, 还没有时间看呢?

既然不支持GBK, 那使用它默认的编码试试看?
dojo是什么东西哦, 没有用过, GWT也没有用过, 呵呵.现在正在准备考试,等考完试要好好看看哦.
re: Google中国那群白痴 冰雨 2006-05-17 16:22  
是啊 为什么英文的就没有 工具栏 啊, 郁闷.
re: Hibernate Validator 简介 冰雨 2006-05-17 16:21  
在有些验证上面用起来还是很不错的, apache 也有一个类似的框架, 我 没有用过, 有用过的路过的话, 给点比较,看看每一个在那个方面跟能发挥长处.
因人而异啦,
有个自己喜欢的主题, 在编程时 说不定可以激发灵感 呵呵.....
re: 申请团队Blog 冰雨 2006-04-20 21:52  
@dudu
谢谢 !
re: 申请团队Blog 冰雨 2006-04-20 20:53  

1、团队英文名称: Cococato
2、团队中文名称: 启点
3、团队简介: 现在在HUST 学习, 热爱java技术,眼下正在准备IBM的SOA比赛, 需要一个团队blog 作为交流平台. 希望BlogJava 能提供一个服务平台, 谢谢!
相关信息: http://icess.my.china.com
4、团队成员的Blog帐号:51AOP, 3223,rockhe,yanruicheng
就是在swinglabs 上下载的
主页是 www.swinglabs.org
大家可以去下载
derby 与 netbean 集成的很好
与 eclipse 集成的也不错 有几个eclipse的插件可以用
在 derby 主页上下载

与netbeans的集成 的教程点击这里
http://blog.matrix.org.cn/page/icess?entry=derby_tutorial_with_netbeans
支持 blob 和clob

Derby supports the standard CLOB and BLOB data types. BLOB and CLOB values are limited to a maximum of 2,147,483,647 characters.

BLOB
A BLOB (binary large object) is a varying-length binary string that can be up to 2,147,483,647 characters long. Like other binary types, BLOB strings are not associated with a code page. In addition, BLOB strings do not hold character data.
The length is given in bytes for BLOB unless one of the suffixes K, M, or G is given, relating to the multiples of 1024, 1024*1024, 1024*1024*1024 respectively.
Note: Length is specified in bytes for BLOB.
Syntax

{ BLOB | BINARY LARGE OBJECT } [ ( length [{K |M |G }] ) ]

Default
A BLOB without a specified length is defaulted to one megabyte.
Corresponding compile-time Java type
java.sql.Blob
JDBC metadata type (java.sql.Types)
BLOB
Use the getBlob method on the java.sql.ResultSet to retrieve a BLOB handle to the underlying data.
Related information
see java.sql.Blob and java.sql.Clob

create table pictures(name varchar(32) not null primary key, pic blob(16M)); --find all logotype pictures select length(pic), name from pictures where name like '%logo%'; --find all image doubles (blob comparsions) select a.name as double_one, b.name as double_two from pictures as a, pictures as b where a.name < b.name and a.pic = b.pic order by 1,2;

哦 是个问题 我到主页看看
少候给你 回信

JSF中文技术文摘