Skip to content

Commit

Permalink
fix jettyStart throws exception if using jetty-env.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
gy-chen committed Jan 5, 2024
1 parent c3de02d commit 2478ad3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ class JettyConfigurerImpl implements JettyConfigurer {
URL findResourceURL(baseResource, String path) {
Resource res = baseResource.addPath(path)
if(res.exists())
return res.getURL()
return res.getURI().toURL()
null
}

Expand Down

0 comments on commit 2478ad3

Please sign in to comment.