
전체 글
db값 띄어쓰기 출력
참고 : http://locochico.tistory.com/39 HashMap map = new HashMap(); String wd; DTO dto = sqlSession.selectOne("com.helloworld.test.dao.DAO.selectViewPage", map); //DB값 불러와 map에 넣어준다. wd = dto.getWr_content(); wd = wd.replaceAll("\r\n", " "); wd = wd.replaceAll("\u0020", " "); model.addAttribute("wr_content", wd); //view page에서 wr_content로 사용한다.
비교연산자
"," ... "=" ... "?" ... "||" / "or" ... 또는 "&&" / "and" ... 그리고 "|" / "bor" ... 논리합 "^" / "xor" ... 비트간의 XOR "&" / "band" ... 논리곱 "==" / "eq" ... 같다 "!=" / "neq" ... 같지않다 "" / "gt" ... 크다 "=" / "gte" ... 크거나 같다 "in" ... 포함 "not" ... 부정 ">" / "shr" ... 오른쪽 시프트 ">>>" / "ushr" ... 부호 없는 오른쪽 시프트 "+" ... 더하기 "-" ... 빼기 "*" ... 곱하기 "/" ... 나누기 "%" ... 몫 "instanceof" ... 참조 데이터 검사 "." ... "(" ... "[" ...
부트스트랩 테이블 정렬
https://www.codeproject.com/Tips/823490/Bootstrap-Table-With-Sorting-Searching-and-Paging