Skip to content

pit3k/peaberry-code-generator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build Status

Elastic Path's Peaberry Code Generator

The Peaberry Code Generator is a Java Annotation Processor that auto-generates Peaberry code for OSGI service export and imports at compile time. Its aim is to simplify the use of the following libraries:

  • Sisu - to auto bootstrap the dependency injection using Guice in each module based on the JSR-330 @Named and @Inject annotations present
  • Peaberry - to manage the exporting and importing of services to the OSGI registry

The supplied annotations can be used to either export a service to the OSGI Service registry, consume a service from the registry, or both.

It is not necessary to deploy this jar at runtime. Each of the annotations are marked as RetentionPolicy.SOURCE and will not be present in the class files. However, the Peaberry classes that are generated have a runtime dependency on both the Sisu and Peaberry libraries.

Usage

The Peaberry Code Generator is available at the Central Maven Repository. Maven users add this to your POM.

<dependency>
  <groupId>com.elasticpath</groupId>
  <artifactId>com.elasticpath.sisu.peaberry-code-generator</artifactId>
  <version>1.0</version>
</dependency>

Configuration

To export a service to the OSGI registry simply add the @ServiceExport annotation to the desired class:

@Named
@Singleton
@ServiceExport(interfaces = WordGenerator.class)
public class TwoWordGenerator implements WordGenerator { ... }

To import a service from the OSGI registry simply annotation the target parameter or field:

@Named
@EagerSingleton
class RunOsgiTestApplication {
	@Inject
	RunOsgiTestApplication(
			@ServiceImport
			final UserGenerator userGenerator) {
@Named
@EagerSingleton
class RunOsgiTestApplication {
	@ServiceImport
    UserGenerator userGenerator

To import a dynamic list of services, annotate an Iterable:

@Named
@EagerSingleton
class RunOsgiTestApplication {
	@Inject
	RunOsgiTestApplication(
			@ServiceImport
			final Iterable<WordGenerator> wordGenerators) {

The test data had examples of how to configure these annotations, and the resulting code that will be generated. Test data can be found here: /src/test/java/org/eclipse/sisu/contrib/peaberry/testdata

A comprehensive working example of the Peaberry Code Generator in action can be found [here](https://github .com/elasticpath/sisu-guice-peaberry-example)

Source

Built with Java 7 and Maven: run mvn clean install to build

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%