aboutsummaryrefslogtreecommitdiff
path: root/connector_lib/src/main/resources/common_gui.beans.xml
diff options
context:
space:
mode:
Diffstat (limited to 'connector_lib/src/main/resources/common_gui.beans.xml')
-rw-r--r--connector_lib/src/main/resources/common_gui.beans.xml60
1 files changed, 0 insertions, 60 deletions
diff --git a/connector_lib/src/main/resources/common_gui.beans.xml b/connector_lib/src/main/resources/common_gui.beans.xml
deleted file mode 100644
index 969a40f7..00000000
--- a/connector_lib/src/main/resources/common_gui.beans.xml
+++ /dev/null
@@ -1,60 +0,0 @@
-<?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:tx="http://www.springframework.org/schema/tx"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xmlns:task="http://www.springframework.org/schema/task"
- xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.1.xsd
- 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-3.1.xsd
- http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd
- http://www.springframework.org/schema/task http://www.springframework.org/schema/task/spring-task-3.0.xsd">
-
- <bean id="contentNegotiationManager"
- class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean"
- primary="true">
- <property name="parameterName" value="mediaType" />
- <property name="defaultContentType" value="application/json" />
- <property name="useRegisteredExtensionsOnly" value="false" />
- <property name="mediaTypes">
- <map>
- <entry key="json" value="application/json" />
- <entry key="html" value="text/html" />
- </map>
- </property>
- </bean>
-
- <bean
- class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
- <property name="order" value="1" />
- <property name="defaultViews">
- <list>
- <!-- JSON View -->
- <bean
- class="org.springframework.web.servlet.view.json.MappingJackson2JsonView">
- <property name="contentType" value="application/json" />
- </bean>
- </list>
- </property>
- </bean>
-
-
- <bean id="templateEngine"
- class="org.thymeleaf.spring5.SpringTemplateEngine">
- <property name="templateResolver" ref="templateResolver" />
- </bean>
-
- <bean class="org.thymeleaf.spring5.view.ThymeleafViewResolver">
- <property name="order" value="2" />
- <property name="templateEngine" ref="templateEngine" />
- <property name="characterEncoding" value="UTF-8" />
- </bean>
-
- <bean id="valitatorWithI18nSupport"
- class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean">
- <property name="validationMessageSource"
- ref="messageSource" />
- </bean>
-
-</beans> \ No newline at end of file