목록Programming/[Java] (76)
른록노트
@ 방법 참고사이트http://marobiana.tistory.com/121
@ 방법 해결) [톰캣설치디렉터리]\lib\servlet-api.jar 파일 복사 후,[자바설치디렉터리]\jre\lib\ext 폴더로 붙여넣기 참고사이트http://yadw.tistory.com/261
@ 코드 DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> Home Page 참고사이트https://stackoverflow.com/questions/37499821/good-jsp-code-structure-for-header-and-footer
@ 방법 ${pageContext.request.contextPath}를 사용하면 된다 예시) -> el과 JSTL이 뭔지 찾아보면 좋을것같다https://hunit.tistory.com/203 (el, JSTL 정리 사이트) 참고사이트http://suyou.tistory.com/78
@ 소스 참고사이트http://kwonnam.pe.kr/wiki/java/log4j/xml
@ 방법 1. Spring에서 적용하여 사용방법servlet-context.xml 1) PropertyPlaceholderConfigurer를 이용한 properties 파일 읽어오기 location 프로퍼티의 값에는 콤마나 공백으로구분된 프로퍼티 파일 목록이 오며, 프로퍼티 파일에 포함된 프로퍼티의 값은 '${프로퍼티 이름}' 형식으로 사용할 수 있습니다. 예제를 보면 config.properties 안에 있는 db.driver의 값을 xml 파일에서 '${db.driver}' 형태로 사용할 수 있습니다. Java Source@value 어노테이션 선언으로 값을 가져올 수 있습니다. @Controller public class HomeController { @Value("${file.path}")pri..
@ 설명 Returns:either (1) the row count for SQL Data Manipulation Language (DML) statements or (2) 0 for SQL statements that return nothing 해석 : sql문으로 변경된 로우 개수 이거나 아무것도 변경안되면 0 참고사이트https://docs.oracle.com/javase/7/docs/api/java/sql/Statement.html#executeUpdate(java.lang.String)
@ 사용방법 System.out.println("XLS".matches("xls")); // false System.out.println("XLS".matches("(?i)xls")) // true 참고사이트http://egloos.zum.com/entireboy/v/4744835 https://docs.oracle.com/javase/6/docs/api/java/util/regex/Pattern.html - 자바 docs