All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eegeese.autocode-maven-plugin.1.0.source-code.applicationContext.xml Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version
<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
	    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd"
       default-lazy-init="true">

    <!-- 自定义属性配置文件 -->
    <bean id="customPropertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="ignoreResourceNotFound" value="true"/>
        <property name="ignoreUnresolvablePlaceholders" value="true"/>
        <property name="locations">
            <list>
                <value>classpath*:jdbc.properties</value>
            </list>
        </property>
    </bean>

    <!-- 注解扫描 -->
    <context:component-scan base-package="com.github.freegeese.maven.plugin.autocode"/>

    <!-- MyBatis 配置 -->
    <import resource="spring-mybatis.xml"/>

</beans>




© 2015 - 2025 Weber Informatics LLC | Privacy Policy