Skip to content

Commit

Permalink
Support domain path in app
Browse files Browse the repository at this point in the history
  • Loading branch information
rainboyan committed Jan 13, 2024
1 parent c07904a commit 7c71eb1
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,11 @@ public Resource findResourceForClassName(String className) {
this.classNameToResourceCache.put(className, resource);
break;
}
resource = resolveExceptionSafe("app/domain/**/" + className + ext);
if (resource != null && resource.exists()) {
this.classNameToResourceCache.put(className, resource);
break;
}
}
}
}
Expand Down

0 comments on commit 7c71eb1

Please sign in to comment.