@Component public class Context extends BaseAbstractContextImpl
限定符和类型 | 字段和说明 |
---|---|
CacheServiceImpl |
cacheService
缓存管理 注意该缓存管理只针对固定的缓存管理 主要用于基本资料
|
ConfigServiceImpl |
config
平台的配置管理 系统参数 等配置 如:数据库连接
|
FileSystemServiceImpl |
fileSystemService
文件系统服务
|
LogServiceImpl |
logService
日志管理服务
|
MessageServiceImpl |
messageService
消息引擎服务
|
PlanServiceImpl |
planService
计划管理
|
ScriptEngineServiceImpl |
scriptEngineService
公式脚本引擎服务
|
SecurityServiceImpl |
securityService
安全管理 用户 用户登录,权限获取
|
UtilServiceImpl |
utilService
公用处理函数服务
|
WorkFlowServiceImpl |
workFlowService
工作流服务
|
限定符和类型 | 方法和说明 |
---|---|
static org.springframework.context.ApplicationContext |
getApplicationContext()
获取spring 的ApplicationContext 注意:这里不是springMVC的 ApplicationContext 如果需要
请使用getMVCApplicationContext.
|
<T> T |
getBean(java.lang.Class<T> className)
添加按照class对象获取注入对象
|
<T> T |
getBean(java.lang.String name) |
static Context |
getInstance()
获取平台上下文实例
|
static org.springframework.context.ApplicationContext |
getMVCApplicationContext()
获取spring MVC的ApplicationContext 它的父ApplicationContext是spring的ApplicationContext
注意:这里不是spring的 ApplicationContext 如果需要 请使用getApplicationContext.
|
void |
init()
平台初始化
|
void |
unInit()
结束
|
@Autowired public ConfigServiceImpl config
@Autowired public CacheServiceImpl cacheService
@Autowired public PlanServiceImpl planService
@Autowired public SecurityServiceImpl securityService
@Autowired public WorkFlowServiceImpl workFlowService
@Autowired public LogServiceImpl logService
@Autowired public UtilServiceImpl utilService
@Autowired public ScriptEngineServiceImpl scriptEngineService
@Autowired public MessageServiceImpl messageService
@Autowired public FileSystemServiceImpl fileSystemService
public static Context getInstance()
public void init()
init
在接口中 ManagerService
init
在类中 BaseAbstractContextImpl
public void unInit()
ManagerService
unInit
在接口中 ManagerService
unInit
在类中 BaseAbstractContextImpl
public <T> T getBean(java.lang.String name)
public <T> T getBean(java.lang.Class<T> className)
T
- 是一个类的类型className
- 类名public static org.springframework.context.ApplicationContext getApplicationContext()
public static org.springframework.context.ApplicationContext getMVCApplicationContext()