Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefanbirkner/picover
A PicoContainer that makes it possible to use Spring managed beans.
https://github.com/stefanbirkner/picover
Last synced: about 1 month ago
JSON representation
A PicoContainer that makes it possible to use Spring managed beans.
- Host: GitHub
- URL: https://github.com/stefanbirkner/picover
- Owner: stefanbirkner
- License: mit
- Created: 2014-05-19T01:21:18.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2017-10-31T10:12:18.000Z (about 7 years ago)
- Last Synced: 2023-07-01T00:04:40.666Z (over 1 year ago)
- Language: Java
- Size: 55.7 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Picover
[![Build Status](https://secure.travis-ci.org/stefanbirkner/picover.png)](https://travis-ci.org/stefanbirkner/picover)
Picover brings a Pico container for a smooth migration from PicoContainer DI to Spring DI. With this container you can migrate your components one by one. The application is kept in a runnable state during the whole migration.
Picover is published under the
[MIT license](http://opensource.org/licenses/MIT).## SpringPicoContainer
Picover provides `SpringPicoContainer`. This container doesn't manage components by itself but uses a `BeanFactory` that provides the components. It is intended to be used as a parent container.
BeanFactory beanFactory = getBeanFactory(); //e.g. the application context
SpringPicoContainer springPicoContainer = new SpringPicoContainer(beanFactory);
MutablePicoContainer pico = new DefaultPicoContainer(springPicoContainer);## Get Picover
Picover is available from Maven Central.
com.github.stefanbirkner
picover
1.0.0