목록Programming (215)
른록노트
@ 방법 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)
@ 방법 var text = ""; text.replace(/
@ 방법 참고사이트http://humit.tistory.com/218
@ 방법 참고사이트https://m.blog.naver.com/PostView.nhn?blogId=sajacr&logNo=221021059931&proxyReferer=https%3A%2F%2Fwww.google.co.kr%2F
@ 사용방법 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
@ 방법 JSONArray jarr; (안에 여러가지 데이터가 있음) JSONObject jval = null; for (int i = 0; i JSONArray안에 있는 JSONObject를 객체에 담아(위치름 참조) 그 객체를 수정해주면 JSONArray 은 그 위치를 보고있어서 수정이 가능함