|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.axonframework.serializer.MavenArtifactRevisionResolver
public class MavenArtifactRevisionResolver
RevisionResolver that uses Maven meta data to retrieve the application version. This application version is used as event revision.
By default, Maven stores the meta-data in a file called 'pom.properties' in the JAR files under 'META-INF/maven/<groupId>/<artifactId>/'.
| Constructor Summary | |
|---|---|
MavenArtifactRevisionResolver(String groupId,
String artifactId)
Initialize the RevisionResolver to look for the version in the Meta Data of the artifact with given groupId and artifactId. |
|
MavenArtifactRevisionResolver(String groupId,
String artifactId,
ClassLoader classLoader)
Initialize the RevisionResolver to look for the version in the Meta Data of the artifact with given groupId and artifactId. |
|
| Method Summary | |
|---|---|
String |
revisionOf(Class<?> payloadType)
Returns the revision for the given payloadType. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public MavenArtifactRevisionResolver(String groupId,
String artifactId)
throws IOException
groupId and artifactId.
The class loader that loaded the MavenArtifactRevisionResolver class is used to load the artifact configuration.
groupId - The groupId as defined in the pom.xml file of the moduleartifactId - The artifactId as defined in the pom.xml file of the module
IOException - When an exception occurs reading from the maven configuration file
public MavenArtifactRevisionResolver(String groupId,
String artifactId,
ClassLoader classLoader)
throws IOException
groupId and artifactId.
groupId - The groupId as defined in the pom.xml file of the moduleartifactId - The artifactId as defined in the pom.xml file of the moduleclassLoader - The class loader to load the artifact configuration with
IOException - When an exception occurs reading from the maven configuration file| Method Detail |
|---|
public String revisionOf(Class<?> payloadType)
RevisionResolverpayloadType.
The revision is used by upcasters to decide whether they need to process a certain serialized event.
Generally, the revision needs to be modified each time the structure of an event has been changed in an
incompatible manner.
revisionOf in interface RevisionResolverpayloadType - The type for which to return the revision
payloadType
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||