Skip to content

Instantly share code, notes, and snippets.

@gabanox
Created October 17, 2014 17:40
Show Gist options
  • Save gabanox/3424db90f818029ea4c3 to your computer and use it in GitHub Desktop.
Save gabanox/3424db90f818029ea4c3 to your computer and use it in GitHub Desktop.
<?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"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<context:component-scan base-package="com.telcel"
use-default-filters="false">
<context:include-filter type="aspectj"
expression="com.telcel.repository.*" />
<context:include-filter type="aspectj"
expression="com.telcel.service.*" />
<context:include-filter type="annotation"
expression="org.aspectj.lang.annotation.Aspect" />
</context:component-scan>
<aop:aspectj-autoproxy />
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment