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

org.noear.nami.annotation.NamiBody Maven / Gradle / Ivy

There is a newer version: 3.0.0-M4
Show newest version
package org.noear.nami.annotation;

import org.noear.nami.common.ContentTypes;

import java.lang.annotation.*;

/**
 * 指定参数转为Body
 *
 * @author noear
 * @since 1.2
 */
@Target({ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface NamiBody {
    String contentType() default ContentTypes.JSON_VALUE;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy