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

com.tencent.trpc.spring.exception.api.HandleExceptionConfigurer Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
/*
 * Tencent is pleased to support the open source community by making tRPC available.
 *
 * Copyright (C) 2023 THL A29 Limited, a Tencent company.
 * All rights reserved.
 *
 * If you have downloaded a copy of the tRPC source code from Tencent,
 * please note that tRPC source code is licensed under the Apache 2.0 License,
 * A copy of the Apache 2.0 License can be found in the LICENSE file.
 */

package com.tencent.trpc.spring.exception.api;

/**
 * Implement this interface to provide customize {@link ExceptionResultTransformer}
 * and {@link ExceptionHandlerResolver}
 *
 * 

Example:

*
 * @Configuration
 * @EnableTRpcHandleException
 * public class MyHandleTRpcExceptionConfiguration implements HandleExceptionConfigurer {
 *
 *     @Override
 *     public ExceptionResultTransform getCustomizedResultTransform() {
 *          return new MyExceptionResultTransform();
 *     }
 *
 *     @Override
 *     public ExceptionHandlerResolver getCustomizedHandlerResolver() {
 *         return new MyServiceExceptionHandlerResolver();
 *     }
 * }
*/ public interface HandleExceptionConfigurer { /** * Provides custom {@link ExceptionResultTransformer} * * @return {@link ExceptionResultTransformer} */ default ExceptionResultTransformer getCustomizedResultTransform() { return null; } /** * Provides custom {@link ExceptionHandlerResolver} * * @return {@link ExceptionHandlerResolver} */ default ExceptionHandlerResolver getCustomizedHandlerResolver() { return null; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy