Package org.jrest4guice.rest.helper

Examples of org.jrest4guice.rest.helper.ServiceHelper.addResource()


            // 注册Rest服务
            annotation = (Path) clazz.getAnnotation(Path.class);
            uris = annotation.value();
            int index = 0;
            for (String uri : uris)
              jRestContext.addResource(uri, clazz, index++ == 0);
          }else if (clazz.isAnnotationPresent(RESTful.class)) {
            jRestContext.addResourceByClassMethodInfo(clazz);
          }else if (RequestContentReader.class.isAssignableFrom(clazz)) {
            // 注册RequestContentReader
            try {
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.