
Spring
文章平均质量分 67
ycwu3
这个作者很懒,什么都没留下…
展开
-
关于Spring整合Hibernate中自动建表问题(hbm2ddl.auto)
1、在单独的使用Hibernate时,在Hibernate映射文件(*.hbm.xml)中配置好各个类的关系,然后再Hibernate配置文件(hibernate.cfg.xml)中添加属性可以自动在数据库中创建表结构(注:只能创建表,而非创建库)。主要代码如下: <!--自动在数据库中建立表 --> <property name="h...原创 2011-07-25 08:57:51 · 232 阅读 · 0 评论 -
Spring-HelloWorld 学习笔记(1)
注:简单演示了Spring最简单的用法。用于自己学习记录。 1、准备:(1)最新版本Eclipse,http://www.eclipse.org/downloads/ (2)Spring插件:Latest GA release: 3.0.5.RELEASE http://www.springsource.org/download 包含:spring-framework...原创 2011-07-25 09:13:40 · 100 阅读 · 0 评论 -
Spring In Action-学习(2)
《读书笔记-原创》1、Bean容器(载入Bean定义信息,装配Bean,根据需要分发Bean)。(1)BeanFactoryString filePath = "/wuyechun/hellomyspring/hello.xml";BeanFactory factory = new XmlBeanFactory(new FileSystemResource(filePath));G...原创 2011-11-04 16:57:38 · 106 阅读 · 0 评论