Extjs与Vue技术优劣势比较
摘要:此技术只变更PLM的表单化的页面显示风格,不涉及不影响整个现有平台的架构和蓝图
阅读全文
Eureka
摘要:Eureka是Netflix开发的服务发现框架,本身是一个基于REST的服务,主要用于定位运行在AWS域中的中间层服务,以达到负载均衡和中间层服务故障转移的目的。SpringCloud将它集成在其子项目spring-cloud-netflix中,以实现SpringCloud的服务发现功能。 Eure
阅读全文
Druid
摘要:DRUID是阿里巴巴开源平台上一个数据库连接池实现,它结合了C3P0、DBCP、PROXOOL等DB池的优点,同时加入了日志监控,可以很好的监控DB池连接和SQL的执行情况,Druid是阿里巴巴开发的号称为监控而生的数据库连接池! Druid不仅仅是一个数据库连接池,它包括四个部分: Druid是一
阅读全文
WEBLOGIC because another WebLogic Server instance is already using this directory
摘要:错误提示:because another WebLogic Server instance is already using this directory 原因:ldap目录数据库文件被锁定,可能是weblogic服务器已经启动。或者没有正常关闭引起的。 解决办法: 查看是否有正在运行WEBLOGI
阅读全文
org.apache.cxf.interceptor.Fault: Unmarshalling Error: 意外的元素 (uri:"", local:"mixornot")。
摘要:三月 09, 2018 3:09:14 下午 org.apache.cxf.phase.PhaseInterceptorChain doDefaultLogging警告: Interceptor for {http://impl.service.ws.cxf.com/}WsBomServiceImp
阅读全文
Cause: org.xml.sax.SAXParseException; lineNumber: 45; columnNumber: 62; 元素内容必须由格式正确的字符数据或标记组成。
摘要:三月 09, 2018 12:13:39 下午 org.apache.catalina.core.StandardContext listenerStart严重: Exception sending context initialized event to listener instance of
阅读全文
LOG4J spring与mybatis整合
摘要:1、导入包log4j-1.2.17.jar <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> </dependency> 2、创建并设置log4j.proper
阅读全文
Java.sql.SQLException: 无效的列类型: 1111
摘要:org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.type.TypeException: Could not set parameters for mapping: ParameterMa
阅读全文
Cannot create inner bean '(inner bean)#67f903b5' of typ
摘要:严重: Context initialization failedorg.springframework.beans.factory.BeanCreationException: Error creating bean with name 'MaraService': Cannot create i
阅读全文
调用webservices报错 原因是没有导入commons-logging和commons-discovery
摘要:Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/discovery/tools/DiscoverSingleton at org.apache.axis.components.logger.L
阅读全文
MAVEN 引入外部JAR 包
摘要:MAVEN引入AXIS依赖的JAR包 在POM.XML中加入即可
阅读全文
Mybatis中的resultType和resultMap
摘要:MyBatis中在查询进行select映射的时候,返回类型可以用resultType,也可以用resultMap,resultType是直接表示返回类型的,而resultMap则是对外部ResultMap的引用,但是resultType跟resultMap不能同时存在。 在MyBatis进行查询映射
阅读全文