Skip to content

Commit

Permalink
修改默认检查服务错误的问题 (#281)
Browse files Browse the repository at this point in the history
框架默认会检查服务是否存在,ReferenceConfig 中check 时null时则是true,而注解中的默认值为false,导致向spring解析时,对ReferenceBean 的check值没有给值,默认为处理为true,导致标签check功能失效
  • Loading branch information
yangqiju authored and beiwei30 committed Sep 28, 2017
1 parent 777204c commit 6baa3a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@

boolean injvm() default false;

boolean check() default false;
boolean check() default true;

boolean init() default false;

Expand Down

0 comments on commit 6baa3a8

Please sign in to comment.