Files
pinpoint/src/main/resources/applicationContext.xml
T
2012-11-29 08:59:10 +00:00

48 lines
3.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:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang"
xmlns:beans="http://www.springframework.org/schema/beans" xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:hdp="http://www.springframework.org/schema/hadoop"
xsi:schemaLocation="http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/hadoop http://www.springframework.org/schema/hadoop/spring-hadoop.xsd">
<context:annotation-config/>
<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>hbase.properties</value>
</list>
</property>
</bean>
<import resource="classpath:hbase-applicationContext.xml"></import>
<bean id="MultiplexedPacketHandler" class="com.profiler.server.receiver.udp.MultiplexedPacketHandler"></bean>
<bean id="JvmDataHandler" class="com.profiler.server.handler.JVMDataHandler"/>
<bean id="SpanHandler" class="com.profiler.server.handler.SpanHandler"/>
<bean id="AgentInfoHandler" class="com.profiler.server.handler.AgentInfoHandler"/>
<bean class="com.profiler.common.util.DefaultTBaseLocator"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseRootTraceIndexDao"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseTraceIndex"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseTraceDao"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseJvmInfoDao"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseApplicationIndexDao"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseApplicationTraceIndex"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseAgentIdApplicationIndexDao"></bean>
<bean class="com.profiler.server.dao.hbase.HbaseTerminalStatisticsDao"></bean>
<bean id="applicationNameMapper" class="com.profiler.server.dao.mapper.ApplicationNameMapper"></bean>
</beans>