示例代码如下: @Modifying @Transactional @Query("delete from GoodsBindConfigMapping gbc " + "where gbc.goodsConfigUid = :#{#bean.goodsConfigUid} " + "and gbc.tenementId = :#{#bean.tenementId} " + "and gbc.goodConfigFlag = :#{#b…
报错: org.springframework.expression.spel.SpelEvaluationException: EL1007E: Property or field 'status' cannot be found on null 如果检查 自己写的SQL语句完全没有问题的情况下,并且已经使用了@Param(value ="") 那么你需要注意,@Param()这个注解引入的jar包是jpa的jar包还是ibatis的jar包. 注意@Param()引用的jar包是否…
ES中时间查询报错:Caused by: ElasticsearchParseException[failed to parse date field [Sun Dec 31 16:00:00 UTC 2017] with format [yyyy-MM-dd HH:mm:ss||yyyy-MM-dd||epoch_millis]]; spring boot集成ES进行时间范围查询,报错如下: * Failed to execute phase [query], all shards faile…
今天在项目中使用Spring Data Solr导入动态域数据报错, 控制台打印错误信息如下 Exception in thread "main" org.springframework.data.solr.UncategorizedSolrException: nested exception is java.lang.NullPointerException at org.springframework.data.solr.core.SolrTemplate.execute(Sol…
1.查询表中反复数据. select * from people where peopleId in (select   peopleId   from   people   group   by   peopleId   having   count(peopleId) > 1) 2.删除表中多余的反复记录,反复记录是依据单个字段(peopleId)来推断.仅仅留有rowid最小的记录 delete from people  where peopleId   in (select   peop…
如题,配置文件如下: #注册中心配置 eureka: instance: instanceId: ${spring.application.name}:${random.int} hostname: sxd client: serviceUrl: defaultZone: http://es1:18000/eureka/,http://es2:18001/eureka/ #Spring 配置 spring: aop: auto: true proxy-target-class: false ap…
示例GitHub源码地址:https://github.com/AngelSXD/springcloud 1.首先使用feign调用,需要配置熔断器 2.配置熔断器需要将熔断器注入Bean,熔断器类上需要加注解@Component,确保可以被spring扫描到 3.熔断器类需要实现feignClient接口,并且重写 feignClient接口中的所有方法,做降级处理逻辑 4.需要在feignClient上的注解中,通过fallback属性来指明熔断器.class,等服务熔断的时候,来执行熔断器…
sql语句之前是这样写的:INSERT INTO tablename SET a = ':a',b = ':b',c = ':c',d = :d,e = :e $data = array ( [':a'] => 1, [':b'] => 2, [':c'] => 3,[':d'] => 4, [':e'] => 5,) $prepareResualt = $pdo->prepare($sql); $prepareResualt->execute($data); 出…
超级大坑 org.springframework.beans.factory.CannotLoadBeanClassException: Error loading class [org.mybatis.spring.SqlSessionFactoryBean] for bean with name 'sqlSessionFactory' defined in class path resource [spring-dao.xml]: problem with class file or dep…
'''Created on 2015年7月2日 @author: liujuan'''import sysreload(sys) 以上为注释的有个日期中文的,结果运行报错:SyntaxError: Non-ASCII character '\xe5' python的默认编码文件是用的ASCII码,你将文件存成了UTF-8!!!(文件中存在中文或者其他语言,就会出现此问题!) 解决办法很简单!!! 在文件开头加入: # -*- coding: UTF-8 -*-    或者  #coding=ut…