Javi

Spring Domain Configuration

Feb 20th, 2012
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.01 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.       xmlns:context="http://www.springframework.org/schema/context"
  4.       xmlns:util="http://www.springframework.org/schema/util"
  5.       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  6.       xsi:schemaLocation="
  7.           http://www.springframework.org/schema/beans
  8.           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  9.          
  10.           http://www.springframework.org/schema/context
  11.           http://www.springframework.org/schema/context/spring-context-3.0.xsd
  12.          
  13.           http://www.springframework.org/schema/util
  14.           http://www.springframework.org/schema/util/spring-util-3.0.xsd
  15.       ">
  16.                  
  17.        <context:component-scan
  18.            base-package="com.javiermoreno.bankof.dominio.dao"/>
  19.        <context:component-scan
  20.            base-package="com.javiermoreno.bankof.servicios"/>
  21.            
  22.            
  23.  
  24. </beans>
Advertisement
Add Comment
Please, Sign In to add comment