
io.micronaut.inject.beans.visitor.EntityIntrospectedAnnotationMapper Maven / Gradle / Ivy
/*
* Copyright 2017-2019 original authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.micronaut.inject.beans.visitor;
import io.micronaut.core.annotation.AnnotationValue;
import io.micronaut.core.annotation.AnnotationValueBuilder;
import io.micronaut.core.annotation.Introspected;
import io.micronaut.inject.annotation.NamedAnnotationMapper;
import io.micronaut.inject.visitor.VisitorContext;
import javax.annotation.Nonnull;
import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.List;
/**
* An annotation mapper that improves introspection for JPA.
*
* @author graemerocher
* @since 1.1
*/
public class EntityIntrospectedAnnotationMapper implements NamedAnnotationMapper {
@Nonnull
@Override
public String getName() {
return "javax.persistence.Entity";
}
@Override
public List> map(AnnotationValue annotation, VisitorContext visitorContext) {
final AnnotationValueBuilder builder = AnnotationValue.builder(Introspected.class)
// don't bother with transients properties
.member("excludedAnnotations", "javax.persistence.Transient")
// following are indexed for fast lookups
.member("indexed",
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.Id").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.Version").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.GeneratedValue").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.Basic").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.Embedded").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.OneToMany").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.OneToOne").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.ManyToOne").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.ElementCollection").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.Enumerated").build(),
AnnotationValue.builder(Introspected.IndexedAnnotation.class)
.member("annotation", "javax.persistence.Column")
.member("member", "name").build()
);
return Collections.singletonList(
builder.build()
);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy