[JSTL] 커스텀 태그 작성하기 출처: https://itstory.tk/entry/JSTL-JSP-커스텀-태그-만들기 [덕's IT Story] https://devchul.tistory.com/28 더보기 jstl custom tag 에서 spring bean 주입하기 1. RequestContextAwareTag 상속받기 1 2 3 4 5 6 7 8 9 10 11 public class XXXTag extends RequestContextAwareTag { @Override protected int doStartTagInternal() throws Exception { // WebApplicationContext 를 얻는다. WebApplicationContext ctx = getRequestContext().getWebApplicationContext(); // bean 주입 return SKIP_BODY; } } Colored by Color Scripter cs 2. request 사용하기 1 2 3 4 5 6 7 8 9 10 11 public class XXX.. 더보기 [리눅스] 리눅스 프로세스가 킬 (kill) 되었을 때 원인 찾아보기 리눅스에서 프로그램을 돌려 놓고 한참 뒤에 보면 화면에 Killed 라는 글만 떠 있고 프로세스가 죽어 있는 경우가 가끔 있습니다. 그럴 때에는 dmesg | grep -E -i -B100 'killed process' 라고 치면 프로세스가 강제 종료될 때의 상황을 자세히 볼 수 있습니다. 제 경우에는 대부분 Out of memory가 원인이었습니다. (참고한 자료: https://stackoverflow.com/questions/726690/who-killed-my-process-and-why) 출처: https://crmn.tistory.com/22 [크롬망간이 글 쓰는 공간] 더보기 이전 1 2 3 4 ··· 78 다음