- 浏览: 3424960 次
- 性别:
- 来自: 珠海
文章分类
- 全部博客 (1633)
- Java (250)
- Android&HTML5 (111)
- Struts (10)
- Spring (236)
- Hibernate&MyBatis (115)
- SSH (49)
- jQuery插件收集 (55)
- Javascript (145)
- PHP (77)
- REST&WebService (18)
- BIRT (27)
- .NET (7)
- Database (105)
- 设计模式 (16)
- 自动化和测试 (19)
- Maven&Ant (43)
- 工作流 (36)
- 开源应用 (156)
- 其他 (16)
- 前台&美工 (119)
- 工作积累 (0)
- OS&Docker (83)
- Python&爬虫 (28)
- 工具软件 (157)
- 问题收集 (61)
- OFbiz (6)
- noSQL (12)
最新评论
-
HEZR曾嶸:
你好博主,这个不是很理解,能解释一下嘛//左边+1,上边+1, ...
java 两字符串相似度计算算法 -
天使建站:
写得不错,可以看这里,和这里的这篇文章一起看,有 ...
jquery 遍历对象、数组、集合 -
xue88ming:
很有用,谢谢
@PathVariable映射出现错误: Name for argument type -
jnjeC:
厉害,困扰了我很久
MyBatis排序时使用order by 动态参数时需要注意,用$而不是# -
TopLongMan:
非常好,很实用啊。。
PostgreSQL递归查询实现树状结构查询
http://www.cnblogs.com/macula/archive/2013/05/06/3063450.html
异常信息如下:
Error creating bean with name 'sysLogAction' defined in file [E:\Workspace\eoms\ultrawf\WebRoot\WEB-INF\classes\spring\bjeoms-sysinfo.xml]: Cannot resolve reference to bean 'sysLogService' while setting bean property 'sysLogService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysLogService' defined in file [E:\Workspace\eoms\ultrawf\WebRoot\WEB-INF\classes\spring\bjeoms-sysinfo.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [com.ultrapower.eoms.common.dao.impl.HibernateDaoImpl] to required type [com.ultrapower.bjeoms.common.core.dao.IHibernateDao] for property 'hibernateDao'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [com.ultrapower.eoms.common.dao.impl.HibernateDaoImpl] to required type [com.ultrapower.bjeoms.common.core.dao.IHibernateDao] for property 'hibernateDao': no matching editors or conversion strategy found
相关配置信息如下:
【bjeoms-sysinfo.xml】
【dataAccessContext-hibernate.xml】
异常说明 :在使用id="bjIDao"的实现类时,由于实现类中的set方法没有写成setBjIDao,而是copy bean id="hibernateDao"的setHibernateDao,导致映射的类不匹配。
在功能迁移时,ctrl+c、ctrl+v 时要小心 ,注意~~~
异常信息如下:
Error creating bean with name 'sysLogAction' defined in file [E:\Workspace\eoms\ultrawf\WebRoot\WEB-INF\classes\spring\bjeoms-sysinfo.xml]: Cannot resolve reference to bean 'sysLogService' while setting bean property 'sysLogService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysLogService' defined in file [E:\Workspace\eoms\ultrawf\WebRoot\WEB-INF\classes\spring\bjeoms-sysinfo.xml]: Initialization of bean failed; nested exception is org.springframework.beans.TypeMismatchException: Failed to convert property value of type [com.ultrapower.eoms.common.dao.impl.HibernateDaoImpl] to required type [com.ultrapower.bjeoms.common.core.dao.IHibernateDao] for property 'hibernateDao'; nested exception is java.lang.IllegalArgumentException: Cannot convert value of type [com.ultrapower.eoms.common.dao.impl.HibernateDaoImpl] to required type [com.ultrapower.bjeoms.common.core.dao.IHibernateDao] for property 'hibernateDao': no matching editors or conversion strategy found
相关配置信息如下:
【bjeoms-sysinfo.xml】
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"> <beans default-autowire="byName" default-lazy-init="true"> <!-- 系统日志信息 syslog start --> <bean id="sysLogAction" class="com.ultrapower.bjeoms.syslog.action.BJEomsSysLogAction" /> <bean id="sysLogService" class="com.ultrapower.bjeoms.syslog.manager.BJEomsSysLogServiceImpl" /> <!-- 系统日志信息 syslog end --> </beans>
【dataAccessContext-hibernate.xml】
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN 2.0//EN" "http://www.springframework.org/dtd/spring-beans-2.0.dtd"> <beans default-autowire="byName" default-lazy-init="true"> <bean > 。。。 。。。 </bean> <!--Hibernate TransactionManager--> <bean id="appSessionFactory" class="cn.com.ultrapower.eoms.common.basedao.GeneralDAO" lazy-init="false"> <property name="hibernateSessionFactory" ref="sessionFactory" /> </bean> <bean id="baseSessionFactory" class="cn.com.ultrapower.eoms.user.comm.hibernatesession.HibernateSessionFactory" lazy-init="false"> <property name="hibernateSessionFactory" ref="sessionFactory" /> </bean> <bean id="hibernateDao" class="com.ultrapower.eoms.common.dao.impl.HibernateDaoImpl"/> <bean id="bjIDao" class="com.ultrapower.bjeoms.common.core.dao.impl.HibernateDaoImpl"/> </beans>
异常说明 :在使用id="bjIDao"的实现类时,由于实现类中的set方法没有写成setBjIDao,而是copy bean id="hibernateDao"的setHibernateDao,导致映射的类不匹配。
在功能迁移时,ctrl+c、ctrl+v 时要小心 ,注意~~~
发表评论
-
网站性能优化方式整理
2016-02-17 10:31 907http://my.oschina.net/morven/bl ... -
SprignMVC 415 Unsupported Media Type 错误
2015-11-19 14:26 1832解决问题参考两个地址: http://blog.csdn.ne ... -
This is very likely to create a memory leak
2015-11-13 21:32 1558http://stackoverflow.com/questi ... -
@PathVariable映射出现错误: Name for argument type
2015-06-28 18:47 9965关于spring java.lang.IllegalArgum ... -
Plugin execution not covered by lifecycle configuration
2015-04-22 20:09 2878异常信息: Plugin execution not cove ... -
解决com.ibatis.sqlmap.client.SqlMapException: There is no statement named in this
2015-04-03 16:43 5148自己碰到的情况 <bean id="sqlMa ... -
Spring扫描jar包中的类
2015-03-27 11:28 1290转自: http://liuqiang5151.iteye.c ... -
<form></form>中有<a>按钮时不能跳转
2014-09-12 09:57 1022在使用easyui的时候, 碰到的问题: <form&g ... -
解决”java.lang.UnsatisfiedLinkError: Native Library .dll already loaded in another
2014-08-22 09:29 1269http://www.cnblogs.com/newstar/ ... -
问题: Max retries exceeded with url
2013-10-07 11:36 29393解决一: http://stackoverflow.com/q ... -
Timeout waiting for idle object
2013-07-04 10:52 2308增加Hibernate的database配置: <pro ... -
Unable to guess FieldBridge for 字段名
2013-07-03 14:13 2014http://stackoverflow.com/questi ... -
Failure [INSTALL_FAILED_OLDER_SDK]
2013-06-21 21:23 1511http://www.eoeandroid.com/threa ... -
VirtualBoX安装增强功能报错解决方法
2013-06-02 22:43 3916Building the main Guest Additio ... -
解决Cannot open the disk 'F:/vmware/Ubuntu.vmdk' or one of the snapshot disks it d
2013-05-20 09:21 1724解决Cannot open the disk 'F:/vmwa ... -
JBoss JBPM 5.2.0 中遇到的几个问题及解决方法
2013-05-19 23:08 1925http://cutelion.blog.hexun.com/ ... -
java.lang.ArrayIndexOutOfBoundsException: 48188
2013-05-19 21:33 3576http://blog.csdn.net/ruzhefeng/ ... -
Access denied for user 'root '@'localhost'
2013-05-18 02:18 1522http://blog.csdn.net/lyflower/a ... -
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-quicksta
2013-05-13 19:57 2471http://blog.csdn.net/ranrui1314 ... -
java.lang.OutOfMemoryError: PermGen space及其解决方法
2013-04-24 15:19 1482http://blog.csdn.net/fengyie007 ...
相关推荐
综上所述,解决"Cannot serve directory No matching DirectoryIndex (index.html) found"的问题通常涉及到检查和修改Apache的配置,特别是`DirectoryIndex`设置,以及确保文件权限、虚拟主机配置和日志排查都是正确...
java.lang.IllegalArgumentException: Cannot convert value of type [java.lang.String] to required type [java.util.Date] for property 'dateValue': no matching editors or conversion strategy found ...
然而,当Java程序遇到"java.security.cert.CertificateException: No subject alternative DNS name matching XXX found"异常时,意味着Java无法找到匹配的证书主题备用DNS名称,从而导致SSL握手失败。 这个问题...
no matching function call(解决方案).md
no matching function for call to function (解决方案).md
- **全局异常处理**:Spring MVC可以通过配置`@ExceptionHandler`注解或定义`HandlerExceptionResolver`实现统一的异常处理。 - **单元测试**:Spring 提供了`MockMvc`工具类,方便对Spring MVC控制器进行单元测试...
Android模拟器安装APP出现INSTALL_FAILED_NO_MATCHING_ABIS错误解决方案 当我们想在电脑的Android模拟器中安装APP的时候,会报INSTALL_FAILED_NO_MATCHING_ABIS错误【如图1】,导致APP无法在模拟器中运行。下面给出...
当你在项目中遇到“fatal error: boostdesc_bgm.i: No such file or directory”这样的错误时,解决方法通常包括以下几步: 1. 检查你的项目路径:确保你已经在包含该文件的正确目录下编译代码,或者在编译命令中...
- cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'dubbo:application'. - schema_reference.4: Failed to read schema document '...
ORA-28040: No matching authentication protocol问题需要oracle12匹配的驱动,目前使用的ojdbc6会出现此问题。用ojdbc8.jar即可解决此问题。官网下载的原版。
Type 异常报告 消息 Failed to convert ... nested exception is java.lang.IllegalStateException: Cannot convert value of type 'java.lang.String' to required type 'java.util.Date': no matching editors or co
当遇到“cvc-elt.1: 找不到元素 'beans' 的声明”这种异常时,通常意味着Spring在尝试解析XML配置文件时遇到了问题。这个错误提示表明XML解析器无法找到`<beans>`元素的定义,这是一个基本的Spring配置文件结构元素...
动态元素匹配(Dynamic Element Matching, DEM)技术是提高数据转换器性能的一种重要手段,尤其在高速、高精度的数据转换中具有显著作用。这篇由Jerry Wayne Bruce撰写的论文深入探讨了动态元素匹配技术在数据转换器...
- **处理一般的 Spring MVC 异常**:Spring MVC 自身的一些异常可以在这里统一处理。 - **使用 @ResponseStatus 注解业务异常**:为自定义异常添加 HTTP 状态码。 #### Servlet 默认容器错误页面的定制化 - **Web ...
### 大数据Ambari平台常见问题与解决方案 #### 一、集群部署Step9组件安装报错 **问题描述:** 在进行大数据集群部署的过程中,遇到了Step9组件安装失败的问题。通过排查发现,问题的原因在于Ambari界面配置的YUM...
原文链接https://www.codeproject.com/Articles/99457/Edge-Based-Template-Matching; 其中vs2015+opencv3.3版code:https://download.csdn.net/download/zfjbit/10732568
问题描述:编译时出现 Error: L6406E: No space in execution regions with .ANY selector matching ebook.o(.data)。 解决办法:Malloc 中管理的内部空间大小减小(原为 160k,现减小为 100k)。 在 STM32 系列...