fathom.utils.Util.toString()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(16.0k)|赞(0)|评价(0)|浏览(188)

本文整理了Java中fathom.utils.Util.toString()方法的一些代码示例,展示了Util.toString()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.toString()方法的具体详情如下:
包路径:fathom.utils.Util
类名称:Util
方法名:toString

Util.toString介绍

暂无

代码示例

代码示例来源:origin: gitblit/fathom

  1. public static String toString(Method method) {
  2. return toString(method.getDeclaringClass(), method.getName());
  3. }

代码示例来源:origin: gitblit/fathom

  1. /**
  2. * Validates that the declared content-types can actually be generated by Fathom.
  3. *
  4. * @param fathomContentTypes
  5. */
  6. protected void validateProduces(Collection<String> fathomContentTypes) {
  7. Set<String> ignoreProduces = new TreeSet<>();
  8. ignoreProduces.add(Produces.TEXT);
  9. ignoreProduces.add(Produces.HTML);
  10. ignoreProduces.add(Produces.XHTML);
  11. for (String produces : declaredProduces) {
  12. if (ignoreProduces.contains(produces)) {
  13. continue;
  14. }
  15. if (!fathomContentTypes.contains(produces)) {
  16. throw new FatalException("{} declares @{}(\"{}\") but there is no registered ContentTypeEngine for that type!",
  17. Util.toString(method), Produces.class.getSimpleName(), produces);
  18. }
  19. }
  20. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. /**
  2. * Validates that the declared content-types can actually be generated by Fathom.
  3. *
  4. * @param fathomContentTypes
  5. */
  6. protected void validateProduces(Collection<String> fathomContentTypes) {
  7. Set<String> ignoreProduces = new TreeSet<>();
  8. ignoreProduces.add(Produces.TEXT);
  9. ignoreProduces.add(Produces.HTML);
  10. ignoreProduces.add(Produces.XHTML);
  11. for (String produces : declaredProduces) {
  12. if (ignoreProduces.contains(produces)) {
  13. continue;
  14. }
  15. if (!fathomContentTypes.contains(produces)) {
  16. throw new FatalException("{} declares @{}(\"{}\") but there is no registered ContentTypeEngine for that type!",
  17. Util.toString(method), Produces.class.getSimpleName(), produces);
  18. }
  19. }
  20. }

代码示例来源:origin: com.gitblit.fathom/fathom-xmlrpc

  1. Object invokeMethod(Method method, List<Object> methodParameters) throws Exception {
  2. Object[] argValues = null;
  3. if (methodParameters != null) {
  4. argValues = new Object[methodParameters.size()];
  5. for (int i = 0; i < methodParameters.size(); i++) {
  6. argValues[i] = methodParameters.get(i);
  7. }
  8. }
  9. try {
  10. method.setAccessible(true);
  11. return method.invoke(invokeTarget, argValues);
  12. } catch (IllegalAccessException | IllegalArgumentException e) {
  13. throw e;
  14. } catch (InvocationTargetException e) {
  15. Throwable t = e.getTargetException();
  16. log.error("Failed to execute {}", Util.toString(method), t);
  17. throw new FathomException(t.getMessage());
  18. }
  19. }

代码示例来源:origin: gitblit/fathom

  1. public static Class<?> getParameterGenericType(Method method, Parameter parameter) {
  2. Type parameterType = parameter.getParameterizedType();
  3. if (!ParameterizedType.class.isAssignableFrom(parameterType.getClass())) {
  4. throw new FathomException("Please specify a generic parameter type for '{}' of '{}'",
  5. parameter.getType().getName(), Util.toString(method));
  6. }
  7. ParameterizedType parameterizedType = (ParameterizedType) parameterType;
  8. try {
  9. Class<?> genericClass = (Class<?>) parameterizedType.getActualTypeArguments()[0];
  10. return genericClass;
  11. } catch (ClassCastException e) {
  12. throw new FathomException("Please specify a generic parameter type for '{}' of '{}'",
  13. parameter.getType().getName(), Util.toString(method));
  14. }
  15. }

代码示例来源:origin: gitblit/fathom

  1. Object invokeMethod(Method method, List<Object> methodParameters) throws Exception {
  2. Object[] argValues = null;
  3. if (methodParameters != null) {
  4. argValues = new Object[methodParameters.size()];
  5. for (int i = 0; i < methodParameters.size(); i++) {
  6. argValues[i] = methodParameters.get(i);
  7. }
  8. }
  9. try {
  10. method.setAccessible(true);
  11. return method.invoke(invokeTarget, argValues);
  12. } catch (IllegalAccessException | IllegalArgumentException e) {
  13. throw e;
  14. } catch (InvocationTargetException e) {
  15. Throwable t = e.getTargetException();
  16. log.error("Failed to execute {}", Util.toString(method), t);
  17. throw new FathomException(t.getMessage());
  18. }
  19. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. /**
  2. * Finds the named controller method.
  3. *
  4. * @param controllerClass
  5. * @param name
  6. * @return the controller method or null
  7. */
  8. protected Method findMethod(Class<?> controllerClass, String name) {
  9. // identify first method which matches the name
  10. Method controllerMethod = null;
  11. for (Method method : controllerClass.getMethods()) {
  12. if (method.getName().equals(name)) {
  13. if (controllerMethod == null) {
  14. controllerMethod = method;
  15. } else {
  16. throw new FatalException("Found overloaded controller method '{}'. Method names must be unique!",
  17. Util.toString(method));
  18. }
  19. }
  20. }
  21. return controllerMethod;
  22. }

代码示例来源:origin: gitblit/fathom

  1. /**
  2. * Finds the named controller method.
  3. *
  4. * @param controllerClass
  5. * @param name
  6. * @return the controller method or null
  7. */
  8. protected Method findMethod(Class<?> controllerClass, String name) {
  9. // identify first method which matches the name
  10. Method controllerMethod = null;
  11. for (Method method : controllerClass.getMethods()) {
  12. if (method.getName().equals(name)) {
  13. if (controllerMethod == null) {
  14. controllerMethod = method;
  15. } else {
  16. throw new FatalException("Found overloaded controller method '{}'. Method names must be unique!",
  17. Util.toString(method));
  18. }
  19. }
  20. }
  21. return controllerMethod;
  22. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. /**
  2. * Validates the declared Returns of the controller method. If the controller method returns an object then
  3. * it must also declare a successful @Return with a status code in the 200 range.
  4. */
  5. protected void validateDeclaredReturns() {
  6. boolean returnsObject = void.class != method.getReturnType();
  7. if (returnsObject) {
  8. for (Return declaredReturn : declaredReturns) {
  9. if (declaredReturn.code() >= 200 && declaredReturn.code() < 300) {
  10. return;
  11. }
  12. }
  13. throw new FatalException("{} returns an object but does not declare a successful @{}(code=200, onResult={}.class)",
  14. Util.toString(method), Return.class.getSimpleName(), method.getReturnType().getSimpleName());
  15. }
  16. }

代码示例来源:origin: gitblit/fathom

  1. /**
  2. * Validates the declared Returns of the controller method. If the controller method returns an object then
  3. * it must also declare a successful @Return with a status code in the 200 range.
  4. */
  5. protected void validateDeclaredReturns() {
  6. boolean returnsObject = void.class != method.getReturnType();
  7. if (returnsObject) {
  8. for (Return declaredReturn : declaredReturns) {
  9. if (declaredReturn.code() >= 200 && declaredReturn.code() < 300) {
  10. return;
  11. }
  12. }
  13. throw new FatalException("{} returns an object but does not declare a successful @{}(code=200, onResult={}.class)",
  14. Util.toString(method), Return.class.getSimpleName(), method.getReturnType().getSimpleName());
  15. }
  16. }

代码示例来源:origin: gitblit/fathom

  1. protected Class<?> getParameterGenericType(Parameter parameter) {
  2. Type parameterType = parameter.getParameterizedType();
  3. if (!ParameterizedType.class.isAssignableFrom(parameterType.getClass())) {
  4. throw new FathomException("Please specify a generic parameter type for '{}' of '{}'",
  5. ControllerUtil.getParameterName(parameter), Util.toString(method));
  6. }
  7. ParameterizedType parameterizedType = (ParameterizedType) parameterType;
  8. try {
  9. Class<?> genericClass = (Class<?>) parameterizedType.getActualTypeArguments()[0];
  10. return genericClass;
  11. } catch (ClassCastException e) {
  12. throw new FathomException("Please specify a generic parameter type for '{}' of '{}'",
  13. ControllerUtil.getParameterName(parameter), Util.toString(method));
  14. }
  15. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. protected Class<?> getParameterGenericType(Parameter parameter) {
  2. Type parameterType = parameter.getParameterizedType();
  3. if (!ParameterizedType.class.isAssignableFrom(parameterType.getClass())) {
  4. throw new FathomException("Please specify a generic parameter type for '{}' of '{}'",
  5. ControllerUtil.getParameterName(parameter), Util.toString(method));
  6. }
  7. ParameterizedType parameterizedType = (ParameterizedType) parameterType;
  8. try {
  9. Class<?> genericClass = (Class<?>) parameterizedType.getActualTypeArguments()[0];
  10. return genericClass;
  11. } catch (ClassCastException e) {
  12. throw new FathomException("Please specify a generic parameter type for '{}' of '{}'",
  13. ControllerUtil.getParameterName(parameter), Util.toString(method));
  14. }
  15. }

代码示例来源:origin: gitblit/fathom

  1. /**
  2. * Validate that the parameters specified in the uri pattern are declared in the method signature.
  3. *
  4. * @param uriPattern
  5. * @throws FatalException if the controller method does not declare all named uri parameters
  6. */
  7. public void validateMethodArgs(String uriPattern) {
  8. Set<String> namedParameters = new LinkedHashSet<>();
  9. for (ArgumentExtractor extractor : extractors) {
  10. if (extractor instanceof NamedExtractor) {
  11. NamedExtractor namedExtractor = (NamedExtractor) extractor;
  12. namedParameters.add(namedExtractor.getName());
  13. }
  14. }
  15. // validate the url specification and method signature agree on required parameters
  16. List<String> requiredParameters = getParameterNames(uriPattern);
  17. if (!namedParameters.containsAll(requiredParameters)) {
  18. throw new FatalException("Controller method '{}' declares parameters {} but the URL specification requires {}",
  19. Util.toString(method), namedParameters, requiredParameters);
  20. }
  21. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. /**
  2. * Validate that the parameters specified in the uri pattern are declared in the method signature.
  3. *
  4. * @param uriPattern
  5. * @throws FatalException if the controller method does not declare all named uri parameters
  6. */
  7. public void validateMethodArgs(String uriPattern) {
  8. Set<String> namedParameters = new LinkedHashSet<>();
  9. for (ArgumentExtractor extractor : extractors) {
  10. if (extractor instanceof NamedExtractor) {
  11. NamedExtractor namedExtractor = (NamedExtractor) extractor;
  12. namedParameters.add(namedExtractor.getName());
  13. }
  14. }
  15. // validate the url specification and method signature agree on required parameters
  16. List<String> requiredParameters = getParameterNames(uriPattern);
  17. if (!namedParameters.containsAll(requiredParameters)) {
  18. throw new FatalException("Controller method '{}' declares parameters {} but the URL specification requires {}",
  19. Util.toString(method), namedParameters, requiredParameters);
  20. }
  21. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest-swagger

  1. protected String getNotes(Method method) {
  2. if (method.isAnnotationPresent(ApiNotes.class)) {
  3. ApiNotes apiNotes = method.getAnnotation(ApiNotes.class);
  4. String resource = "classpath:swagger/" + method.getDeclaringClass().getName().replace('.', '/')
  5. + "/" + method.getName() + ".md";
  6. if (!Strings.isNullOrEmpty(apiNotes.value())) {
  7. resource = apiNotes.value();
  8. }
  9. if (resource.startsWith("classpath:")) {
  10. String content = ClassUtil.loadStringResource(resource);
  11. if (Strings.isNullOrEmpty(content)) {
  12. log.error("'{}' specifies @{} but '{}' was not found!",
  13. Util.toString(method), ApiNotes.class.getSimpleName(), resource);
  14. }
  15. return content;
  16. } else {
  17. String notes = translate(apiNotes.key(), apiNotes.value());
  18. return notes;
  19. }
  20. }
  21. return null;
  22. }

代码示例来源:origin: gitblit/fathom

  1. protected String getNotes(Method method) {
  2. if (method.isAnnotationPresent(ApiNotes.class)) {
  3. ApiNotes apiNotes = method.getAnnotation(ApiNotes.class);
  4. String resource = "classpath:swagger/" + method.getDeclaringClass().getName().replace('.', '/')
  5. + "/" + method.getName() + ".md";
  6. if (!Strings.isNullOrEmpty(apiNotes.value())) {
  7. resource = apiNotes.value();
  8. }
  9. if (resource.startsWith("classpath:")) {
  10. String content = ClassUtil.loadStringResource(resource);
  11. if (Strings.isNullOrEmpty(content)) {
  12. log.error("'{}' specifies @{} but '{}' was not found!",
  13. Util.toString(method), ApiNotes.class.getSimpleName(), resource);
  14. }
  15. return content;
  16. } else {
  17. String notes = translate(apiNotes.key(), apiNotes.value());
  18. return notes;
  19. }
  20. }
  21. return null;
  22. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. public ControllerHandler(Injector injector, Class<? extends Controller> controllerClass, String methodName) {
  2. if (controllerClass.isAnnotationPresent(Singleton.class)
  3. || controllerClass.isAnnotationPresent(javax.inject.Singleton.class)) {
  4. throw new FathomException("Controller '{}' may not be annotated as a Singleton!", controllerClass.getName());
  5. }
  6. this.controllerClass = controllerClass;
  7. this.controllerProvider = injector.getProvider(controllerClass);
  8. this.method = findMethod(controllerClass, methodName);
  9. this.messages = injector.getInstance(Messages.class);
  10. Preconditions.checkNotNull(method, "Failed to find method '%s'", Util.toString(controllerClass, methodName));
  11. log.trace("Obtained method for '{}'", Util.toString(method));
  12. this.routeInterceptors = new ArrayList<>();
  13. for (Class<? extends RouteHandler<Context>> handlerClass : ControllerUtil.collectRouteInterceptors(method)) {
  14. RouteHandler<Context> handler = injector.getInstance(handlerClass);
  15. this.routeInterceptors.add(handler);
  16. }
  17. ContentTypeEngines engines = injector.getInstance(ContentTypeEngines.class);
  18. this.declaredConsumes = ControllerUtil.getConsumes(method);
  19. validateConsumes(engines.getContentTypes());
  20. this.declaredProduces = ControllerUtil.getProduces(method);
  21. validateProduces(engines.getContentTypes());
  22. this.declaredReturns = ControllerUtil.getReturns(method);
  23. validateDeclaredReturns();
  24. this.contentTypeSuffixes = configureContentTypeSuffixes(engines);
  25. configureMethodArgs(injector);
  26. this.isNoCache = ClassUtil.getAnnotation(method, NoCache.class) != null;
  27. }

代码示例来源:origin: gitblit/fathom

  1. public ControllerHandler(Injector injector, Class<? extends Controller> controllerClass, String methodName) {
  2. if (controllerClass.isAnnotationPresent(Singleton.class)
  3. || controllerClass.isAnnotationPresent(javax.inject.Singleton.class)) {
  4. throw new FathomException("Controller '{}' may not be annotated as a Singleton!", controllerClass.getName());
  5. }
  6. this.controllerClass = controllerClass;
  7. this.controllerProvider = injector.getProvider(controllerClass);
  8. this.method = findMethod(controllerClass, methodName);
  9. this.messages = injector.getInstance(Messages.class);
  10. Preconditions.checkNotNull(method, "Failed to find method '%s'", Util.toString(controllerClass, methodName));
  11. log.trace("Obtained method for '{}'", Util.toString(method));
  12. this.routeInterceptors = new ArrayList<>();
  13. for (Class<? extends RouteHandler<Context>> handlerClass : ControllerUtil.collectRouteInterceptors(method)) {
  14. RouteHandler<Context> handler = injector.getInstance(handlerClass);
  15. this.routeInterceptors.add(handler);
  16. }
  17. ContentTypeEngines engines = injector.getInstance(ContentTypeEngines.class);
  18. this.declaredConsumes = ControllerUtil.getConsumes(method);
  19. validateConsumes(engines.getContentTypes());
  20. this.declaredProduces = ControllerUtil.getProduces(method);
  21. validateProduces(engines.getContentTypes());
  22. this.declaredReturns = ControllerUtil.getReturns(method);
  23. validateDeclaredReturns();
  24. this.contentTypeSuffixes = configureContentTypeSuffixes(engines);
  25. configureMethodArgs(injector);
  26. this.isNoCache = ClassUtil.getAnnotation(method, NoCache.class) != null;
  27. }

代码示例来源:origin: com.gitblit.fathom/fathom-rest

  1. protected void handleDeclaredThrownException(Exception e, Method method, Context context) {
  2. Class<? extends Exception> exceptionClass = e.getClass();
  3. for (Return declaredReturn : declaredReturns) {
  4. if (exceptionClass.isAssignableFrom(declaredReturn.onResult())) {
  5. context.status(declaredReturn.code());
  6. // prefer declared message to exception message
  7. String message = Strings.isNullOrEmpty(declaredReturn.description()) ? e.getMessage() : declaredReturn.description();
  8. if (!Strings.isNullOrEmpty(declaredReturn.descriptionKey())) {
  9. // retrieve localized message, fallback to declared message
  10. message = messages.getWithDefault(declaredReturn.descriptionKey(), message, context);
  11. }
  12. if (!Strings.isNullOrEmpty(message)) {
  13. context.setLocal("message", message);
  14. }
  15. validateResponseHeaders(declaredReturn, context);
  16. log.warn("Handling declared return exception '{}' for '{}'", e.getMessage(), Util.toString(method));
  17. return;
  18. }
  19. }
  20. if (e instanceof RuntimeException) {
  21. // pass-through the thrown exception
  22. throw (RuntimeException) e;
  23. }
  24. // undeclared exception, wrap & throw
  25. throw new FathomException(e);
  26. }

代码示例来源:origin: gitblit/fathom

  1. protected void handleDeclaredThrownException(Exception e, Method method, Context context) {
  2. Class<? extends Exception> exceptionClass = e.getClass();
  3. for (Return declaredReturn : declaredReturns) {
  4. if (exceptionClass.isAssignableFrom(declaredReturn.onResult())) {
  5. context.status(declaredReturn.code());
  6. // prefer declared message to exception message
  7. String message = Strings.isNullOrEmpty(declaredReturn.description()) ? e.getMessage() : declaredReturn.description();
  8. if (!Strings.isNullOrEmpty(declaredReturn.descriptionKey())) {
  9. // retrieve localized message, fallback to declared message
  10. message = messages.getWithDefault(declaredReturn.descriptionKey(), message, context);
  11. }
  12. if (!Strings.isNullOrEmpty(message)) {
  13. context.setLocal("message", message);
  14. }
  15. validateResponseHeaders(declaredReturn, context);
  16. log.warn("Handling declared return exception '{}' for '{}'", e.getMessage(), Util.toString(method));
  17. return;
  18. }
  19. }
  20. if (e instanceof RuntimeException) {
  21. // pass-through the thrown exception
  22. throw (RuntimeException) e;
  23. }
  24. // undeclared exception, wrap & throw
  25. throw new FathomException(e);
  26. }

相关文章