prasadtalasila/BITS-Darshini

View on GitHub
src/main/resources/spring/mvc-config.xml

Summary

Maintainability
Test Coverage
<?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:mvc="http://www.springframework.org/schema/mvc"
    xmlns:context="http://www.springframework.org/schema/context"
    xsi:schemaLocation="http://www.springframework.org/schema/mvc 
        http://www.springframework.org/schema/mvc/spring-mvc.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.xsd">

    <mvc:annotation-driven conversion-service="conversionService" />

    <!-- Register the formatters -->
    <bean id="conversionService"
        class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <!-- <property name="formatters"> <set> <bean class="com.bits.protocolanalyzer.mvc.formatter.LinkFormatter"/> 
            </set> </property> -->
    </bean>

    <context:component-scan base-package="in.ac.bits.protocolanalyzer" />

    <!-- <mvc:resources mapping="/resources/**" location="/resources/" /> -->
    <mvc:resources mapping="/css/**" location="/WEB-INF/css/" />
    <mvc:resources mapping="/js/**" location="/WEB-INF/js/" />
    <mvc:resources mapping="/view/**" location="/WEB-INF/view/" />
    <mvc:resources mapping="/node_modules/**" location="/WEB-INF/node_modules/" />

</beans>