Commit 453baf90 by chenweitao

初始提交

parent 6aef475a
This diff is collapsed. Click to expand it.
<?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:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.2.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.2.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.2.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.2.xsd">
<!-- 开启注解处理器 -->
<context:annotation-config />
<!-- 开启aspectj自动代理,可以使用@aspectj注解 -->
<aop:aspectj-autoproxy expose-proxy="true" />
<!-- 开启组件自动扫描,扫描路径由base-package属性指定 -->
<context:component-scan base-package="com.zhiweidata.bjfzxWebapp" />
<!-- 配置文件导入 -->
<!-- <context:property-placeholder location="classpath*:*.properties" /> -->
<context:property-placeholder location="classpath*:*.properties" />
<!-- 导入Mongo配置文件 -->
<import resource="mongoContext.xml" />
<!-- 导入Solr的配置文件 -->
<!-- <import resource="solrContext.xml" /> -->
</beans>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment