forked from Realhedin/topjava02
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspring-app.xml
More file actions
20 lines (16 loc) · 920 Bytes
/
spring-app.xml
File metadata and controls
20 lines (16 loc) · 920 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<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"
xsi:schemaLocation="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.xsd">
<!--
<bean class="ru.javawebinar.topjava.repository.mock.MockUserRepository" id="mockUserRepository"/>
<bean class="ru.javawebinar.topjava.service.UserServiceImpl">
<property name="repository" ref="mockUserRepository"/>
</bean>
-->
<import resource="spring-tools.xml"/>
<import resource="spring-security.xml"/>
<context:annotation-config/>
<context:component-scan base-package="ru.javawebinar.**.service"/>
</beans>