Package net.hasor.mvc.web.restful

Examples of net.hasor.mvc.web.restful.Produces


    }
    /**处理 @Produces 注解。*/
    protected Object returnCallBack(Object returnData, Call call) {
        Method targetMethod = call.getMethod();
        if (targetMethod.isAnnotationPresent(Produces.class) == true) {
            Produces pro = targetMethod.getAnnotation(Produces.class);
            String proValue = pro.value();
            if (StringUtils.isBlank(proValue) == false) {
                this.servletResponse.setContentType(proValue);
            }
        }
        return returnData;
View Full Code Here

TOP

Related Classes of net.hasor.mvc.web.restful.Produces

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.