mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-05-21 19:39:38 +00:00
Fix Jetty 9 startup
This commit is contained in:
parent
2f3e035c60
commit
d77f31c96e
1 changed files with 7 additions and 0 deletions
7
src/main/webapp/WEB-INF/jetty-web.xml
Normal file
7
src/main/webapp/WEB-INF/jetty-web.xml
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN" "http://www.eclipse.org/jetty/configure.dtd">
|
||||
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
|
||||
<!-- Fix Jetty 9 issue -->
|
||||
<!-- http://stackoverflow.com/questions/32643530/classpath-issue-between-jetty-maven-plugin-and-tomcat-jdbc-8-0-9-leading-to-ser -->
|
||||
<Set name="parentLoaderPriority">true</Set>
|
||||
</Configure>
|
Loading…
Reference in a new issue