Java EE框架:S2SH
雅静8
有计划,有追求;越努力,越幸运!
展开
-
SSH整合报错
今SSH整合的时候报错如下:三月 16, 2017 10:33:03 上午 org.springframework.orm.hibernate4.HibernateTransactionManager afterPropertiesSet信息: Using DataSource [com.mchange.v2.c3p0.ComboPooledDataSource [ acquireIn原创 2017-03-16 11:57:03 · 691 阅读 · 0 评论 -
Hibernate Cannot use identity column key generation with <union-subclass> mapping for
今天学习Hibernate报一下错误:org.hibernate.MappingException: Cannot use identity column key generation with <union-subclass> mapping for: hibernateUnionSubClass.Persion at org.hibernate.persister.entity.Unio原创 2017-02-17 19:44:21 · 1512 阅读 · 0 评论 -
Hibernate 使用log4j时报 Class path contains multiple SLF4J bindings.
在Hibernate中使用log4j时jar包冲突了,控制台打印如下:SLF4J: Class path contains multiple SLF4J bindings.SLF4J: Found binding in [jar:file:/E:/%e5%ad%a6%e4%b9%a0%e8%b5%84%e6%ba%90/%e4%b8%8e%e4%bb%a3%e7%a0%81%e6%9c%89%e5原创 2017-02-20 16:45:22 · 416 阅读 · 0 评论 -
Spring整合Hibernate报错:Error occured processing XML 'org/aopalliance/intercept/MethodInterceptor'
今天Spring4.0整合Hibernate4.2.4时,在Spring的配置文件中报错,如下:Error occured processing XML 'org/aopalliance/intercept/MethodInterceptor'. See Error Log for more details 解决办法:导入aopalliance.jar包,这个包是AOP联盟的API包,里面包含原创 2017-03-01 08:40:32 · 745 阅读 · 0 评论 -
Spring 整合Hibernate 报错Pointcut is malformed: warning no match for this type name: com.ren.spring.hibe
今天Spring整合Hibernate时在Spring的配置文件中报错如下:Pointcut is malformed: warning no match for this type name: com.ren.spring.hibernate.service 我配置切点的代码如下:<aop:config> <aop:pointcut expression="execution原创 2017-03-01 18:32:38 · 3820 阅读 · 1 评论 -
Spring 整合Hibernate报错:Error creating bean with name 'dataSource' defined in class path resource
Spring 整合Hibernate 时报错如下:org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [applicationContext.xml]: BeanPostProcessor b原创 2017-03-02 09:16:57 · 6911 阅读 · 1 评论 -
Spring框架自我总结(一)
Spring框架自我总结目录Spring简介Spring基本知识控制反转IOC依赖注入DISpring容器Spring配置Bean配置使用外部属性文件整合多个配置文件正文Spring简介Spring基本知识Spring理念是:使现有技术更加实用;本身是大杂烩整合现有的框架技术;加工对象工厂;Spring的优点: (1)轻量级框架;(轻量级:不带有侵略性API、对容器没有依赖性原创 2017-03-03 13:00:42 · 739 阅读 · 0 评论 -
Spring框架自我总结(二)
Spring框架自我总结目录Spring表达式语言SpELSpEL字面量引用 Bean属性和方法SpEL支持的运算符号静态代理静态代理角色分析代码分析使用静态代理的优缺点动态代理AOPAOP简介AOP 术语Spring AOP基于 AspectJ 注解配置AOP基于XML配置AOP基于XML和 注解配置比较Spring中的事务管理事务简介Spring 中的事务管原创 2017-03-03 19:39:13 · 457 阅读 · 0 评论 -
Spring 和 Hibernate整合总结
Spring和Hibernate整合1.Spring整合Hibernate什么?由IOC 容器生成Hibernate 的 SessionFactory;让hibernate 使用上Spring 的声明式事务: (1)单独使用 ORM 框架时, 必须为每个 DAO 操作重复某些常规任务. 例如: 打开关闭 Session 对象; 启动, 提交, 回滚事务等; (2)Hibernate 上下文原创 2017-03-04 10:56:03 · 488 阅读 · 0 评论 -
Spring 和 Struts2整合总结
Spring 和 Struts2整合总结1.Spring 如何在 WEB 应用中使用 ? 原理:通过注册 Servlet 监听器 ContextLoaderListener, Web 应用程序可以加载 Spring 的ApplicationContext 对象. 这个监听器会将加载好的ApplicationContext 对象保存到 Web 应用程序的 ServletContex原创 2017-03-07 17:01:34 · 412 阅读 · 0 评论 -
Struts2、Spring和Hibernate三大框架整合
Struts2、Spring和Hibernate三大框架整合整合步骤:1. 加入 Spring:1). 加入 jar 包;2). 配置 web.xml 文件;3). 加入 Spring 的配置文件;2. 加入 Hibernate:1). 同时建立持久化类, 和其对应的 .hbm.xml 文件, 生成对应的数据表;2). Spring 整合 Hiberna原创 2017-03-07 19:10:43 · 1193 阅读 · 0 评论 -
Hibernate 自动生成表问题
在hibernate4.2.4中使用MySQLInnoDBDialect方言和hibernate.hbm2ddl.auto为update自动生成表时报错,我的 mysql版本为5.5,报错如下:二月 16, 2017 5:33:28 下午 org.hibernate.annotations.common.Version <clinit>INFO: HCANN000001: Hibernate Co原创 2017-02-16 17:38:45 · 1094 阅读 · 0 评论