18 lines
1.0 KiB
XML
18 lines
1.0 KiB
XML
<?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:jdbc="http://www.springframework.org/schema/jdbc"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context-3.1.xsd http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc.xsd">
|
|
<!-- 自动扫描 -->
|
|
<context:component-scan base-package="com.ai.cloud.skywalking.sample"/>
|
|
|
|
<jdbc:embedded-database id="dataSource" type="H2">
|
|
<jdbc:script location="classpath:db/sql/create-db.sql" />
|
|
</jdbc:embedded-database>
|
|
|
|
<import resource="classpath*:provider/dubbox-rest-provider.xml"/>
|
|
</beans>
|