@Slf4j是用作日志输出的,一般会在项目每个类的开头加入该注解,如果不写下面这段代码,并且想用log,
private final Logger logger = LoggerFactory.getLogger(当前类名.class);
就可以用@Slf4j来代替;这样就省去这段很长的代码。
@Slf4j
@Service
public class TestLogServiceImpl implements ITestLogService {}
@Slf4j是用作日志输出的,一般会在项目每个类的开头加入该注解,如果不写下面这段代码,并且想用log,
private final Logger logger = LoggerFactory.getLogger(当前类名.class);
就可以用@Slf4j来代替;这样就省去这段很长的代码。
@Slf4j
@Service
public class TestLogServiceImpl implements ITestLogService {}