• spring 常用配置


    1.引入properties文件

    <!-- spring2.0需要配置PropertyPlaceholderConfigurer,为location属性注入值 -->
    <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
        <property name="location" value="classpath:jdbc.properties"></property>
    </bean
        
    <!-- spring2.5之后 -->
    <context:property-placeholder location="classpath:jdbc.properties"/>
    
    <!-- 在配置文件中使用${propName}获取外部属性文件的值 -->
    <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource">
        <property name="user" value="${jdbc.user}"></property>
        <property name="password" value="${jdbc.password}"></property>
        <property name="jdbcUrl" value="${jdbc.url}"></property>
        <property name="driverClass" value="${jdbc.driverClass}"></property>
        <property name="initialPoolSize" value="${jdbc.initpool}"></property>
        <property name="maxPoolSize" value="${jdbc.maxpool}"></property>
    </bean>
    

    2.自动扫描包

    <!-- 自动扫描包,只扫描Controller -->
    <context:component-scan base-package="com.pdsu"/>
    
    <!-- 更详细的配置 -->
    <context:component-scan base-package="com.pdsu" use-default-filters="false">
        <context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
    </context:component-scan>
    
    • use-default-filters

    使用默认的 Filter 进行包扫描,而默认的 Filter 对标有 @Service,@Controller和@Repository 的注解的类进行扫描,默认值为true,当此值为false时,需要配合<context:include-filter />注解使用。

  • 相关阅读:
    SpringBoot 项目瘦身
    对比两个文本的异同
    Spring 事务不起作用的场景
    Controller 层数据校验实现思路
    Notify 类的实现思路
    backup: 使用 vim 时一定会用到的设置 --for-myself
    exercise: 反射获取指定的属性值 --CSharp
    exercise: 序列化和反序列化Xml --CSharp
    前缀
    华罗庚的数学思想
  • 原文地址:https://www.cnblogs.com/dch0/p/11440635.html
Copyright © 2020-2023  润新知