Skip to content

Commit

Permalink
Merge pull request #300 from gy-chen/master
Browse files Browse the repository at this point in the history
fix jettyStart throws exception if using jetty-env.xml
  • Loading branch information
f4lco authored Jan 6, 2024
2 parents c3de02d + 2478ad3 commit 1c89a31
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 1c89a31

Please sign in to comment.