-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathserver.xml
More file actions
18 lines (14 loc) · 1.2 KB
/
Copy pathserver.xml
File metadata and controls
18 lines (14 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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:lang="http://www.springframework.org/schema/lang" xmlns:util="http://www.springframework.org/schema/util"
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/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.0.xsd"
default-lazy-init="false" default-autowire="byName">
<!--开启注解方式,扫描top.gonefuture.netty包路径-->
<context:annotation-config/>
<context:component-scan base-package="top.gonefuture.netty.games" />
<!-- 传统方法配置BEAN -->
<!--<bean id="roleMoveService" class="top.gonefuture.netty.games.service.RoleMoveService" />-->
</beans>