diff options
author | Pierre <pierre.guillot@sonarsource.com> | 2022-07-27 10:32:33 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-02-21 12:02:56 +0000 |
commit | 52677847895557485c032c4ff61f35e4877f95ff (patch) | |
tree | 7a0bcddf556f39403bccd05860af896cf1492d83 /server/sonar-web/public/WEB-INF | |
parent | 0fb39e83de58a422ad4ae6a0fe25b4163344d5a7 (diff) | |
download | sonarqube-52677847895557485c032c4ff61f35e4877f95ff.tar.gz sonarqube-52677847895557485c032c4ff61f35e4877f95ff.zip |
SONAR-18484 Add api/v2/system/liveness endpoint
Diffstat (limited to 'server/sonar-web/public/WEB-INF')
-rw-r--r-- | server/sonar-web/public/WEB-INF/app-content.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/server/sonar-web/public/WEB-INF/app-content.xml b/server/sonar-web/public/WEB-INF/app-content.xml new file mode 100644 index 00000000000..6593bb29d75 --- /dev/null +++ b/server/sonar-web/public/WEB-INF/app-content.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<beans xmlns="http://www.springframework.org/schema/beans" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:context="http://www.springframework.org/schema/context" + xmlns:mvc="http://www.springframework.org/schema/mvc" + xsi:schemaLocation="http://www.springframework.org/schema/beans + + http://www.springframework.org/schema/beans/spring-beans.xsd + http://www.springframework.org/schema/context + http://www.springframework.org/schema/context/spring-context.xsd + http://www.springframework.org/schema/mvc + http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd"> + + <context:annotation-config/> + <context:component-scan base-package="org.sonar.server.v2"/> + <mvc:annotation-driven /> +</beans> |