暈, 從一推出我都開始使用了, 你現(xiàn)在才用啊, 哎.
喜歡關(guān)注些網(wǎng)站的文章和新聞, 一個一個上去看麻煩, 使用google 可以把rss聚合起來, 很爽.
如果聚合的東西多了, 感覺下載頁面很滿, 也不好看,
不過, 現(xiàn)在google 的英文頁面跟人性化, 多個標(biāo)簽, 看看俺的個性化主頁.
http://blog.matrix.org.cn/page/icess?entry=google_pages
我還是比較喜歡那些比較輕量級的容器,雖然說現(xiàn)在 Spring 和 Hibernate都越來越重了,它們的 jar 包都超過 2M 了。
jar 包的大小和是不是輕量級框架有關(guān)系嗎?
maybe lz can see this : Wicket vs Tapestry
and JSF vs struts.
to see Wicket , visit here:
http://www.tkk7.com/51AOP/archive/2006/08/05/61909.html
呵呵喜歡就好啊, 剛剛過完考試周 等有時間也來看看.
我還沒有使用過, 剛把 JEE5.0 的東西下載下來, 這周要考試, 還沒有時間看呢?
既然不支持GBK, 那使用它默認(rèn)的編碼試試看?
dojo是什么東西哦, 沒有用過, GWT也沒有用過, 呵呵.現(xiàn)在正在準(zhǔn)備考試,等考完試要好好看看哦.
在有些驗(yàn)證上面用起來還是很不錯的, apache 也有一個類似的框架, 我 沒有用過, 有用過的路過的話, 給點(diǎn)比較,看看每一個在那個方面跟能發(fā)揮長處.
因人而異啦,
有個自己喜歡的主題, 在編程時 說不定可以激發(fā)靈感 呵呵.....
1、團(tuán)隊(duì)英文名稱: Cococato
2、團(tuán)隊(duì)中文名稱: 啟點(diǎn)
3、團(tuán)隊(duì)簡介: 現(xiàn)在在HUST 學(xué)習(xí), 熱愛java技術(shù),眼下正在準(zhǔn)備IBM的SOA比賽, 需要一個團(tuán)隊(duì)blog 作為交流平臺. 希望BlogJava 能提供一個服務(wù)平臺, 謝謝!
相關(guān)信息:
http://icess.my.china.com
4、團(tuán)隊(duì)成員的Blog帳號:51AOP, 3223,rockhe,yanruicheng
就是在swinglabs 上下載的
主頁是 www.swinglabs.org
大家可以去下載
derby 與 netbean 集成的很好
與 eclipse 集成的也不錯 有幾個eclipse的插件可以用
在 derby 主頁上下載
與netbeans的集成 的教程點(diǎn)擊這里
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;