39 lines
1.8 KiB
XML
39 lines
1.8 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:mvc="http://www.springframework.org/schema/mvc"
|
|
xmlns:skywalking="http://cloud.asiainfo.com/schema/skywalking"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans
|
|
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
|
|
http://www.springframework.org/schema/context
|
|
http://www.springframework.org/schema/context/spring-context-3.0.xsd
|
|
http://www.springframework.org/schema/mvc
|
|
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
|
|
http://cloud.asiainfo.com/schema/skywalking
|
|
http://cloud.asiainfo.com/schema/skywalking/skywalking.xsd">
|
|
|
|
<!-- 默认的注解映射的支持 -->
|
|
<mvc:annotation-driven/>
|
|
|
|
<!-- 设置使用注解的类所在的jar包 ,当使用 <context:component-scan/> 后,就可以将 <context:annotation-config/>
|
|
移除了 -->
|
|
<context:component-scan base-package="com.ai.cloud.skywalking.example.controller"/>
|
|
|
|
|
|
<!-- 完成请求和注解POJO的映射 -->
|
|
<!--<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/> -->
|
|
|
|
<bean
|
|
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
|
|
<property name="prefix" value="/jsp/"/>
|
|
<property name="suffix" value=".jsp"/>
|
|
<property name="viewClass"
|
|
value="org.springframework.web.servlet.view.JstlView"/>
|
|
</bean>
|
|
<!-- 对静态资源文件的访问 -->
|
|
<mvc:default-servlet-handler/>
|
|
|
|
<import resource="consumer/dubbo-consumer.xml"/>
|
|
<skywalking:trace classExpression="*" packageExpression="com.ai.cloud.skywalking.example.controller..*"/>
|
|
</beans> |