All Downloads are FREE. Search and download functionalities are using the official Maven repository.

message.mvc.annotation.EnableCosmosMvc Maven / Gradle / Ivy

There is a newer version: 2.5.9
Show newest version
package message.mvc.annotation;

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Inherited;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
import message.mvc.config.WebMvcConfiguration;
import org.springframework.context.annotation.Import;
import org.springframework.web.servlet.config.annotation.EnableWebMvc;

/**
 * 启用cosmos-mvc.
 *
 * @author sunhao([email protected])
 * @version V1.0, 16/1/18 下午10:50
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Documented
@Inherited
@EnableWebMvc
@Import({WebMvcConfiguration.class})
public @interface EnableCosmosMvc {
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy