xml配置
- 全局环境变量
1 | <bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> |
- bean扫描
1 | <context:component-scan base-package="cn.idea360" /> |
- 引入其他xml配置文件
1 | <import resource="classpath*:weixin/spring-mybatis.xml"/> |
- 读取配置文件
1 | <context:property-placeholder location="classpath:conf.properties"/> |
- servlet配置
1 | <servlet> |
- 编码配置
1 | <filter> |
- 注解
1 | <mvc:annotation-driven/> |