摘要:
ApplicationEventPublisher 是 Spring 框架中的一个接口,用于发布应用程序事件。它定义了一个名为 publishEvent 的方法,用于发布事件。 在程序内部一些简单的通信场景,可以优先选择ApplicationEventPublisher来处理,或者项目没有配备MQ中 阅读全文
摘要:
public ResponseEntity<byte[]> file() { String path = "C:\\Users\\Administrator\\Desktop\\result.pdf"; File file = new File(path); try { byte[] fileByt 阅读全文