
com.github.ibole.microservice.container.spring.SpringIocContainerProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of microservice-container Show documentation
Show all versions of microservice-container Show documentation
The container module of microservice project
The newest version!
package com.github.ibole.microservice.container.spring;
import com.github.ibole.microservice.container.IocContainer;
import com.github.ibole.microservice.container.IocContainerProvider;
/**
* @author bwang
*
*/
public class SpringIocContainerProvider extends IocContainerProvider {
/*
* (non-Javadoc)
*
* @see com.github.ibole.microservice.container.IocContainerProvider#isAvailable()
*/
@Override
protected boolean isAvailable() {
return true;
}
/*
* (non-Javadoc)
*
* @see com.github.ibole.microservice.container.IocContainerProvider#priority()
*/
@Override
protected int priority() {
return 5;
}
/*
* (non-Javadoc)
*
* @see com.github.ibole.microservice.container.IocContainerProvider#createIocContainer()
*/
@Override
public IocContainer createIocContainer() {
return new SpringContainer();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy