com.github.developframework.jsonview.boot.annotation.EnableJsonview Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsonview-spring-boot-starter Show documentation
Show all versions of jsonview-spring-boot-starter Show documentation
Jsonview framework built on Jackson framework,Implementation through XML configuration file to customize the json format, greatly improved the Java generates a json string freedom, let the development of modular more convenient quickly.
package com.github.developframework.jsonview.boot.annotation;
import com.github.developframework.jsonview.boot.JsonviewComponentAutoConfiguration;
import com.github.developframework.jsonview.boot.JsonviewProperties;
import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.context.annotation.Import;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@EnableConfigurationProperties(JsonviewProperties.class)
@Import(JsonviewComponentAutoConfiguration.class)
public @interface EnableJsonview {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy