Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
fixing package names in web.xml eclipse/STS refactor missed
Browse files Browse the repository at this point in the history
  • Loading branch information
kml27 committed Sep 11, 2020
1 parent 435bbf6 commit e4213b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<context-param>
<param-name>contextClass</param-name>
<param-value>
ca.uhn.fhir.jpa.starter.ApplicationContext
edu.washington.cirg.fhir.jpa.starter.ApplicationContext
</param-value>
</context-param>
<context-param>
Expand All @@ -31,7 +31,7 @@
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
ca.uhn.fhir.jpa.starter.FhirTesterConfig
edu.washington.cirg.fhir.jpa.starter.FhirTesterConfig
</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
Expand All @@ -43,7 +43,7 @@

<servlet>
<servlet-name>fhirServlet</servlet-name>
<servlet-class>ca.uhn.fhir.jpa.starter.JpaRestfulServer</servlet-class>
<servlet-class>edu.washington.cirg.fhir.jpa.starter.JpaRestfulServer</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
Expand Down

0 comments on commit e4213b5

Please sign in to comment.