- 浏览: 5217 次
- 性别:
- 来自: 广州
最新评论
文章列表
1. WebService基本概念
WSDL:
http://www.w3cschool.cn/index-20.html
SOAP:
http://www.w3school.com.cn/soap/index.asp
2. 引入CXF依赖库
下载:http://cxf.apache.org/,解压至目录
加上依赖的jar库,如:
commons-logging-1.1.jar
geronimo-activation_1.1_spec-1.0-M1.jar (or Sun's Activation jar ...
Spring与Hibernate动态建表及动态加载映射文件(无需SessionFactory Rebuild)
J.Office2有一功能是工作流支持动态表单设计,设计后可以动态生成数据库表,并且支持实时查询(单表及多表均可)。
由于J.Office2版本中采用了Hibernate作为底层的ORM框架,结合Spring框架,Spring容器启动后,SessionFactory就会被注入到各个业务的Dao层中去。
动态建表功能比较容易实现,我们可以new一个SessionFactory,然后把它的配置属性hibernate.hbm2ddl. ...