Java에서 스케줄링을 할 때 Quartz를 많이 사용합니다. Quartz에서 사용하는 Trigger는 SimpleTrigger와 CronTrigger가 있는데요. 간단하게 특징을 보면 다음과 같습니다. SimpleTrigger : 간단하며 interval, delay, repeat times 등을 설정할 수 있습니다. 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 org.quartz.simpl.SimpleThreadPool 5 4 org.quartz.simpl.RAMJobStore 60000 Colored by Color Scriptercs CronTrigger : Linux에서 사용하는 cr..
Programing
콘솔창에 뜨던 것들이 안뜨고 그냥 이 경고 하나만 나오는 경우가 있다. [Deprecation] Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience. For more help, check https://xhr.spec.whatwg.org/. 이럴때에는 당황하지 말고 default로 바꾸어 주면 해결 된다.
이클립스 maven 으로 톰캣 실행할 경우에 java.lang.ClassNotFoundException: org.springframework.web.context.ContextLoaderListener 이런 에러가 나는 경우가 있다. 필요한 라이브러리들이 배포가 잘 안되서 있어서 나는 오류로 이렇게 Maven Dependencies 를 등록해 주면 해결이 된다.
이클립스에서 코딩후 Commit 하면 아래와 같이 빨간 화살표가 뜨는데 이건 svn 캐쉬를 먹고 있어서 나타난 현상임 이건 다시 노란깡통? 으로 원상복구를 해줘야 다음 Commit 시에 롤백이 일어나질 않는다. 다시 원상복구를 해주는 방법은 1. 그냥 이클립스를 껏다 킨다. 2. 아래와 같이 Cleanup 을 눌러준다. 이와 같이 두가지 방법이 있다.
파일을 참고해 보려고 import 했더니 첫줄부터 Multiple markers at this line- The type java.lang.String cannot be resolved. It is indirectly referenced from required .class files- The type java.lang.Object cannot be resolved. It is indirectly referenced from required .class files 이런 오류가... 뭔가 가져올 때 프로젝트 왼쪽에 느낌표가 있고 오류가 나 있으면 Build Path 에 문제가 있었던 기억이 있어서 들어가 보니 jre 파일이 안잡힌 것으로 보인다. 저걸 더블클릭을 해주면 jre 파일에 아무것도 안 잡힌 것을..