버블링은 안쪽 요소 부터 이벤트가 발생한다. 클릭 클릭 버튼을 누르면 child -> parent -> body 가 alert 출력된다. event.stopPropagation() 함수를 사용해서 버블링 중단을 할 수 있다. 클릭 child 가 alert 출력된다. 캡처링은 바깥 요소 부터 이벤트가 발생한다. {capture: true} 또는 true 를 사용해서 캡처링을 사용할 수 있다. body -> parent -> child 가 alert 출력된다.
[error] java.lang.IllegalStateException: Ambiguous mapping found. Cannot map '***'Controller bean method there is already '***'Controller bean method @Controller public class Controller { @RequestMapping(value = "/main.action", method = { RequestMethod.GET }) public Object main(){ return null; } @RequestMapping(value = "/main.action", method = { RequestMethod.POST }) public Object list() { retur..
Spring, mybatis로 구현된 프로젝트에서 아래과 같이 datetime 형식으로 DB에 들어가 있는 값을 ( ~ 일 전, ~ 시간 전 .. ) 과 같이 표기 해보자. Time.java 생성 import java.util.Date; public class Time { private static class TIME_MAXIMUM { public static final int SEC = 60; public static final int MIN = 60; public static final int HOUR = 24; public static final int DAY = 30; public static final int MONTH = 12; } public static String calculateTime..