16 lines
231 B
Java
16 lines
231 B
Java
package com.codesdream.ase.configure;
|
|
|
|
|
|
import org.springframework.context.annotation.Configuration;
|
|
|
|
/**
|
|
* Spring 框架全局配置类
|
|
* 主要用于注册或者管理Bean
|
|
*/
|
|
@Configuration
|
|
public class GlobalConfigure {
|
|
|
|
|
|
|
|
}
|