Skip to content

Commit

Permalink
修复因添加与spring共享数据源导致的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
jacky6024 committed Dec 8, 2017
1 parent f9dfb4a commit b13d0a5
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ public void afterPropertiesSet() throws Exception {
}
if(StringUtils.isNotBlank(repoHomeDir) && !repoHomeDir.equals("${urule.repository.dir}")){
initRepositoryDir(applicationContext);
}else if(StringUtils.isNotBlank(repositoryXml)){
}
if(StringUtils.isNotBlank(repositoryXml)){
initRepositoryByXml(repositoryXml);
}else if(RepositoryBuilder.datasource!=null){
if(RepositoryBuilder.databaseType==null){
Expand Down

0 comments on commit b13d0a5

Please sign in to comment.