AsyncJobHandlerService.java 279 Bytes
package com.trash.garbage.service;

import org.springframework.scheduling.annotation.Async;
import org.springframework.stereotype.Service;

import javax.annotation.Resource;

/**
 * 处理异步任务
 * @author 20412
 */
@Service
@Async
public class AsyncJobHandlerService {

}