JAVA의 WatchService에서 주의할점 JAVA의 WatchService에서 주의할점 WatchServiceListener.class @Slf4j @Component public class WatchServiceListener implements InitializingBean { @Value("${file.watch.path}") private static String filePath; @Autowired private WatchProperties watchProperties; private WatchKey watchKey; @Override public void afterPropertiesSet() throws Exception { //watchService 생성 WatchService watchService = FileSystems.get.. Language/자바 2년 전