iGcmGuice 容器组件管理
gcm(incubator)
gcm是Guice组件管理(Guice component management)的缩写,用于简化基于Guice容器的各种服务组件。它使您可以快速使用某些组件,而不必编写某些组件的逻辑。它只是集成到Guice容器中的一组Bridge,并且特定的业务实现需要由用户自定义。它易于上手,快速且没有太多冗余,因此您可以随时随地将其注入到现有的Guice容器中。快来体验吧!
Status
如何编译?
use shell script:
./mvnw clean install package
if you skip test, please run:
./mvnw clean install package -DskipTests
check that the code is formatted correctly, please run:
./mvnw clean install checkstyle:check -DskipTests
check the code for code-level bugs, please run:
./mvnw clean install findbugs:check -DskipTests
评论