1
2
3
4
5
6
7
8
9
10
11
12
| package com.common.configure;
|
| import org.springframework.beans.factory.annotation.Value;
| import org.springframework.context.annotation.ComponentScan;
| import org.springframework.context.annotation.Configuration;
|
| @Configuration
| @ComponentScan(value = "com.deloitte.system")
| public class CommonConfig {
|
|
| }
|
|