找回密码
立即注册
搜索
热搜: Java Python Linux Go
发回帖 发新帖

1378

积分

0

好友

186

主题
发表于 5 天前 | 查看: 19| 回复: 0

在基于Spring Boot的Web项目开发中,你是否也经常面临以下痛点:

  • 每个Controller中都需要通过@Autowired注入大量的Service,导致代码臃肿且冗余。
  • 想要为所有Service方法添加统一的日志记录或异常处理,不得不修改每个方法,维护成本极高。
  • 在调用Service方法时,偶尔因手误写错方法名,编译阶段无法发现,直到运行时才报错,增加排查难度。

本文将介绍一种基于Lambda表达式封装的ServiceManager组件。它能够帮助我们告别手动注入,以简洁的Lambda形式调用方法,并自动集成日志、异常处理与缓存功能,显著提升代码的整洁度与可维护性。

组件能解决什么问题?

在传统方式下,调用一个用户查询接口通常需要这样编写:

// 1. 首先注入Service
@Autowired
private UserService userService;

// 2. 在方法中调用并处理异常和日志
public SerResult<UserDTO> getUser(Long userId) {
    try {
        log.info("开始查询用户,ID:{}", userId);
        UserDTO user = userService.queryUser(userId);
        log.info("查询成功,结果:{}", user);
        return SerResult.success(user);
    } catch (Exception e) {
        log.error("查询失败", e);
        return SerResult.fail("查询用户时发生错误");
    }
}

可以看到,代码中充斥着注入、日志和try-catch等重复性模板代码。

使用ServiceManager组件后,同样的功能可以简化为一行代码:

public SerResult<UserDTO> getUser(Long userId) {
    // 一行代码完成调用:传入方法引用和参数,组件自动处理其余事项
    return ServiceManager.call(UserService::queryUser, userId);
}

手动注入被消除了,日志打印和异常捕获由组件统一处理,代码变得极其简洁。

核心设计与实现步骤

该组件的核心逻辑清晰,主要完成三件事:

  1. 接收一个Lambda表达式(如 UserService::queryUser),并解析出对应的Service实例。
  2. 缓存已解析的Service与方法信息,提升后续调用性能。
  3. 统一执行目标方法,并嵌入日志记录、异常处理等横切关注点。

下面将分步拆解其实现代码。

第一步:准备基础工具类

首先,需要准备几个基础工具类,它们是组件运行的前提。

1. 统一响应封装类 (SerResult)

无论调用成功或失败,均返回格式统一的响应对象,便于前端处理。

package org.pro.wwcx.ledger.common.dto;
import lombok.Data;
@Data
public class SerResult<T> {
    private int code; // 状态码,例如 200-成功,500-失败
    private String msg; // 提示信息
    private T data; // 响应数据

    public static <T> SerResult<T> success(T data) {
        SerResult<T> result = new SerResult<>();
        result.setCode(200);
        result.setMsg("操作成功");
        result.setData(data);
        return result;
    }

    public static <T> SerResult<T> fail(String msg) {
        SerResult<T> result = new SerResult<>();
        result.setCode(500);
        result.setMsg(msg);
        result.setData(null);
        return result;
    }
}
2. Lambda解析工具 (LambdaUtil)

该工具类负责从序列化的Lambda表达式中解析出方法元数据信息,这是实现面向切面编程(AOP)式统一调用的关键。

package org.pro.wwcx.ledger.common.util;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.lang.invoke.SerializedLambda;

public class LambdaUtil {
    public static SerializedLambda valueOf(Serializable lambda) {
        if (lambda == null) {
            throw new IllegalArgumentException("Lambda表达式不能为空");
        }
        try {
            Method writeReplaceMethod = lambda.getClass().getDeclaredMethod("writeReplace");
            writeReplaceMethod.setAccessible(true);
            return (SerializedLambda) writeReplaceMethod.invoke(lambda);
        } catch (Exception e) {
            throw new RuntimeException("解析Lambda表达式时发生错误", e);
        }
    }
}
3. Spring上下文工具 (SpringUtil)

通过实现ApplicationContextAware接口获取Spring上下文,从而动态获取Bean实例,替代手动@Autowired注入。

package org.pro.wwcx.ledger.common.util;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import org.springframework.stereotype.Component;

@Component
public class SpringUtil implements ApplicationContextAware {
    private static ApplicationContext applicationContext;

    public static <T> T getBean(Class<T> requiredType) {
        if (applicationContext == null) {
            throw new RuntimeException("Spring上下文未初始化完成");
        }
        return applicationContext.getBean(requiredType);
    }

    @Override
    public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
        SpringUtil.applicationContext = applicationContext;
    }
}
4. 可序列化函数式接口 (SerialBiFunction)

定义一个支持序列化的双参数函数式接口,用于规范Lambda表达式的格式。

package org.pro.wwcx.ledger.common.resolver.anno;
import java.io.Serializable;

public interface SerialBiFunction<T, U, R> extends Serializable {
    R apply(T t, U u);
}
5. 对象构建器 (InstBuilder)

一个通用的对象构建工具,支持链式调用,用于方便地创建和配置ServiceExecutor等对象。

package org.pro.wwcx.ledger.common.resolver;
public class InstBuilder<T> {
    private final T target;

    private InstBuilder(Class<T> clazz) {
        try {
            this.target = clazz.getDeclaredConstructor().newInstance();
        } catch (Exception e) {
            throw new RuntimeException("创建对象实例失败", e);
        }
    }

    public static <T> InstBuilder<T> of(Class<T> clazz) {
        return new InstBuilder<>(clazz);
    }

    public <V> InstBuilder<T> set(Setter<T, V> setter, V value) {
        setter.set(target, value);
        return this;
    }

    public T build() {
        return target;
    }

    @FunctionalInterface
    public interface Setter<T, V> {
        void set(T target, V value);
    }
}

第二步:实现核心管理器 ServiceManager

ServiceManager是组件的门面类,对外提供简洁的call方法,内部负责Lambda解析、缓存和服务执行路由。

package org.pro.wwcx.ledger.common.servicer;
import lombok.extern.slf4j.Slf4j;
import org.pro.wwcx.ledger.common.dto.SerResult;
import org.pro.wwcx.ledger.common.resolver.InstBuilder;
import org.pro.wwcx.ledger.common.resolver.anno.SerialBiFunction;
import org.pro.wwcx.ledger.common.util.LambdaUtil;
import org.pro.wwcx.ledger.common.util.SpringUtil;
import java.lang.invoke.SerializedLambda;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

@Slf4j
public class ServiceManager {
    private static final int INIT_COUNT = 6666;
    private static final Map<SerialBiFunction<?,?,?>, LambdaMeta<?>> CACHE_LAMBDA;

    static {
        CACHE_LAMBDA = new ConcurrentHashMap<>(INIT_COUNT);
    }

    @SuppressWarnings("unchecked")
    public static <T,U,R> SerResult<R> call(SerialBiFunction<T,U,R> fn, U param){
        if (fn == null) {
            return SerResult.fail("服务函数不能为空");
        }
        // 1. 获取或缓存Lambda元数据
        LambdaMeta<T> lambdaMeta = (LambdaMeta<T>) CACHE_LAMBDA.computeIfAbsent(fn, k-> {
            LambdaMeta<T> meta = parseSerialFunction(fn);
            log.debug("已缓存Service信息:{}", meta.getServiceName());
            return meta;
        });

        // 2. 构建执行器
        ServiceExecutor<T,U,R> executor = InstBuilder.of(ServiceExecutor.class)
                .set(ServiceExecutor::setServiceFn, fn)
                .set(ServiceExecutor::setParam, param)
                .set(ServiceExecutor::setLambdaMeta, lambdaMeta)
                .build();

        // 3. 执行并返回结果
        return executor.callService();
    }

    @SuppressWarnings("unchecked")
    private static <T, U, R> LambdaMeta<T> parseSerialFunction(SerialBiFunction<T,U,R> fn) {
        SerializedLambda lambda = LambdaUtil.valueOf(fn);
        LambdaMeta<T> lambdaMeta = new LambdaMeta<>();
        String tClassName = lambda.getImplClass().replaceAll("/", ".");
        try {
            Class<T> aClass = (Class<T>) Class.forName(tClassName);
            T inst = SpringUtil.getBean(aClass); // 关键:从Spring容器获取Bean实例
            lambdaMeta.setClazz(aClass);
            lambdaMeta.setInst(inst);
            lambdaMeta.setServiceName(lambda.getImplMethodName());
        } catch (ClassNotFoundException e) {
            throw new RuntimeException("未找到对应的Service类:" + tClassName, e);
        }
        return lambdaMeta;
    }

    @lombok.Data
    private static class LambdaMeta<T> {
        private Class<T> clazz;
        private T inst;
        private String serviceName;
    }
}

第三步:实现服务执行器 ServiceExecutor

ServiceExecutor是具体的执行者,负责方法调用、耗时统计、日志记录和异常捕获,体现了代码重构中提取模板方法的思想。

package org.pro.wwcx.ledger.common.servicer;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.pro.wwcx.ledger.common.dto.SerResult;
import org.pro.wwcx.ledger.common.resolver.anno.SerialBiFunction;

@Slf4j
@Setter
public class ServiceExecutor<T, U, R> {
    private SerialBiFunction<T, U, R> serviceFn;
    private U param;
    private ServiceManager.LambdaMeta<T> lambdaMeta;

    public SerResult<R> callService() {
        long startTime = System.currentTimeMillis();
        String serviceName = lambdaMeta.getClazz().getSimpleName();
        String methodName = lambdaMeta.getServiceName();
        log.info("开始调用服务:{}.{},参数:{}", serviceName, methodName, param);

        try {
            R result = serviceFn.apply(lambdaMeta.getInst(), param);
            long costTime = System.currentTimeMillis() - startTime;
            log.info("服务调用成功:{}.{},耗时{}ms,结果:{}",
                    serviceName, methodName, costTime, result);
            return SerResult.success(result);
        } catch (Exception e) {
            long costTime = System.currentTimeMillis() - startTime;
            log.error("服务调用失败:{}.{},耗时{}ms",
                    serviceName, methodName, costTime, e);
            return SerResult.fail("调用" + serviceName + "." + methodName + "失败:" + e.getMessage());
        }
    }
}

第四步:实际应用示例

1. 定义 Service

Service层的编写方式无需任何改变。

package org.pro.wwcx.ledger.service;
import org.pro.wwcx.ledger.dto.UserDTO;
import org.pro.wwcx.ledger.dto.UserUpdateDTO;
import org.springframework.stereotype.Service;
import lombok.extern.slf4j.Slf4j;

@Slf4j
@Service
public class UserService {
    public UserDTO queryUser(Long userId) {
        // 模拟数据库查询
        UserDTO user = new UserDTO();
        user.setUserId(userId);
        user.setUserName("张三");
        user.setAge(25);
        return user;
    }

    public Boolean updateUser(Long userId, UserUpdateDTO updateDTO) {
        // 模拟数据库更新
        log.info("更新用户{}的信息:{}", userId, updateDTO);
        return true;
    }
}
2. 在 Controller 中调用

在Controller中,不再需要注入UserService,直接通过ServiceManager.call进行调用,这是对传统Spring开发模式的一种改进。

package org.pro.wwcx.ledger.controller;
import org.pro.wwcx.ledger.common.dto.SerResult;
import org.pro.wwcx.ledger.common.servicer.ServiceManager;
import org.pro.wwcx.ledger.dto.UserDTO;
import org.pro.wwcx.ledger.dto.UserUpdateDTO;
import org.pro.wwcx.ledger.service.UserService;
import org.springframework.web.bind.annotation.*;

@RestController
@RequestMapping("/user")
public class UserController {

    @GetMapping("/{userId}")
    public SerResult<UserDTO> getUser(@PathVariable Long userId) {
        // 单参数方法,直接使用方法引用
        return ServiceManager.call(UserService::queryUser, userId);
    }

    @PutMapping("/{userId}")
    public SerResult<Boolean> updateUser(
            @PathVariable Long userId,
            @RequestBody UserUpdateDTO updateDTO) {
        // 多参数方法,使用显式的Lambda表达式
        return ServiceManager.call(
                (UserService service, UserUpdateDTO dto) -> service.updateUser(userId, dto),
                updateDTO
        );
    }
}
3. 运行效果

调用查询接口时,控制台会自动输出格式统一的日志:

开始调用服务:UserService.queryUser,参数:1001
服务调用成功:UserService.queryUser,耗时5ms,结果:UserDTO(userId=1001, userName=张三, age=25)

如果发生异常,例如查询不到用户,组件会捕获异常并返回标准错误响应:

{
  "code": 500,
  "msg": "调用UserService.queryUser失败:用户不存在",
  "data": null
}

优势总结

  • 消除模板代码:Controller中不再需要大量的@Autowired注解,代码更加简洁。
  • 统一横切逻辑:日志、异常处理、性能监控等逻辑在ServiceExecutor中集中管理,便于维护和扩展。
  • 提升性能:通过缓存Service元数据,避免每次调用都进行反射解析。
  • 编译期安全:使用Lambda方法引用,如果方法名错误,会在编译阶段报错,提前发现问题。

注意事项与扩展

  • JDK版本:确保使用JDK 8及以上版本,以支持Lambda表达式。
  • Service注解:目标Service类必须被Spring管理(如使用@Service注解)。
  • 多实现类情况:如果一个接口有多个实现类,需要扩展SpringUtil.getBean方法,支持按名称(name)获取Bean。
  • 扩展性:可以在ServiceExecutor.callService()方法中轻松集成其他通用逻辑,如权限校验、参数校验、事务控制等。



上一篇:Kubernetes kube-proxy 模式对比:iptables 与 IPVS 生产环境选型指南
下一篇:Qt国际化实战:解决QTextEdit右键菜单英文问题并加载widgets.qm
您需要登录后才可以回帖 登录 | 立即注册

手机版|小黑屋|网站地图|云栈社区 ( 苏ICP备2022046150号-2 )

GMT+8, 2025-12-24 22:23 , Processed in 0.159676 second(s), 39 queries , Gzip On.

Powered by Discuz! X3.5

© 2025-2025 云栈社区.

快速回复 返回顶部 返回列表