ITPUB个人空间 »
shiren1118的个人空间
欢迎访问 shiren1118 的个人空间
我的论坛主题
-
2008-04-27 21:12:07 / 电子图书与IT文档资料
非常好的动态语言在JVM上无缝继承
查看(570)
评论(10)
-
2007-12-17 16:20:34 / 动态语言
Grails 1.0 RC3 ReleasedG2One Inc

and the Grails development team are pleased to announce the availability of Grails

1.0 RC3. The release is available for immediate download from the Grails download page

.This release contains 39 bug fixes and improvements from theprevious RC2 release. For a summary of changes and bug fixes see the J
查看(657)
评论(3)
-
2007-12-13 11:12:57 / Java web开发及框架技术
What's New in Groovy 1.5Posted byGuillaume LaforgeonDec 09, 2007 04:11 AMCommunityJavaTopicsScripting,Dynamic LanguagesGroovy,the Java-like dynamic language for the JVM, matures over time like goodwines. After the successful release of Groovy 1.0 in January 2007, thenext major milestone with the 1.5 label already hits the shelves. Withit, come several interesting novelties that we will examine in thisarticle. The major addition to the language is the
查看(322)
评论(1)
-
2007-12-10 22:00:10 / Java web开发及框架技术
Groovy1.5 正式发布!由于这次发布的Groovy版本包含了很多Java5的特性,并修正(fix)了很多错误,且增添了许多新特性,1.1这个版本号已经无法反映这么多令人振奋的改进了,所以Groovy Team决定将本次发布的Groovy版本定为1.5。注意目前最新稳定版为Groovy1.5了,而非之前的Groovy1.0。下载地址:http://dist.groovy.codehaus.org/ ... vy-binary-1.5.0.zipluntan:http://grails.5d6d.com/10
查看(312)
评论(1)
-
2007-12-02 20:10:53 / Java web开发及框架技术
2007-12-2 20:07:01 org.apache.catalina.core.AprLifecycleListener lifecycleEvent信息: The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/i386/client:/usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.03/jre/../lib/i386:/usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/i386/client::/usr/lib/jvm/java-6-sun-1.6.0.03/jre/lib/i386::/usr/lib/firefox/:/usr/lib/f
查看(329)
评论(4)
-
2007-11-27 16:19:47 / Java企业开发
public List findall() {Connection conn = null;PreparedStatement stmt = null;List list = null;try {conn = dataSource.getConnection();stmt = conn.prepareStatement("select name,agefrom user");ResultSet rs = stmt.executeQuery();User user = null;while (rs.next()) {list = new ArrayList();user = new User();user.setName(rs.getString("name"));user.setAge(rs.getInt("age"));list.add(user);for (int i
查看(405)
评论(1)
-
2007-11-20 19:42:59 / Java web开发及框架技术
robbin点评Java full-stack框架关键字: 企业应用full-stack2005年ruby on rails横空出世般的流行刺激了Java开源框架整合的大趋势,ruby onrails这个号称“full-stack”的框架能做的我们都能做,它就是整合的更好,省略了配置文件,提供了快速代码生成器,暂且不论rubyonrails本身,但是诸多Java开发人员把目光从只做好一件事情上面挪到了“提供最方便的full-stack框架”上面,因此我们可以看到整个Java开源社区雨后春笋般的出现了一批又一
查看(445)
评论(4)
-
2007-11-20 19:39:08 / Java web开发及框架技术
AppFuse 2.0正式发布了关键字: 企业应用早上从Matt Raible的博客上看到AppFuse2.0已经全部开发完毕,正式发布了。AppFuse2.0使用了Maven作为基础进行开发,并且大量使用了java5的泛型和注释。AppFuse2.0要求使用java5+版本以及Servlet 2.4和JSP 2.0(如果是使用JSF作为WEB层的话,JSP要使用2.1版本)。AppFuse2.0新特性:[*]与Maven2集成[*]将原来的WebWork升级为Struts2[*]使用JDK5,注释,JSP2.0和Servlet2.4[*]支持JPA[*]使用泛型操
查看(440)
评论(3)