일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
- cursorai
- 리눅스
- spring
- IntelliJ
- Linux
- docker
- 명령어
- analytics4
- 티스토리챌린지
- DBMS
- oracle
- MariaDB
- zset
- 자바
- git
- mysql
- SQL
- Javascript
- error
- Kibana
- iBatis
- pandas
- 오블완
- 쉘스크립트
- Python
- PostgreSQL
- codeium
- java
- github
- mssql
- Today
- Total
목록전체 글 (450)
hanker

참고 : https://www.youtube.com/watch?v=omJfspwjnZk input[type=text]{ width:100%; border:2px solid #aaa; border-radius:4px; margin: 8px 0; outline: none; padding:8px; box-sizing: border-box; transition:.3s; } input[type=text]:focus{ border-color:dodgerBlue; box-shadow:0 0 8px 0 dodgetBlue; } css 적용 시
체크박스 다중선택 value값 가져오기 $("input[name=tblChk]:checked").each(function(){ var test = $(this).val(); console.log("체크된 값 : " + test); }); 체크박스 다중선택 value값 배열에 담기 var arTest = []; $("input[name=tblChk]:checked").each(function(){ arTest.push($(this).val()); }); console.log("체크된 값 total : " + arTest);
public static void zipDirectory(String dir, String zipfile) throws IOException, IllegalArgumentException{ //파일리스트 가져오기 위해 객체 생성 File d = new File(dir); //디렉토리 존재유무 if(!d.isDirectory()) throw new IllegalArgumentException("Not a directory : " + dir); //해당 경로의 파일을 배열로 가져옴 String[] entries = d.list(); //파일 복사를 위한 버퍼 byte[] buffer = new byte[4096]; int bytesRead; //zip파일을 생성하기 위한 객체 생성 ZipOutputStrea..

1. openlayers js, css 다운로드 https://openlayers.org/download/ OpenLayers - Get the Code If you want to try out OpenLayers without downloading anything (not recommended for production), include the following in the head of your html page: openlayers.org v.6.4.3-dist.zip 다운로드 2. 스프링 프로젝트에 삽입 3. mapView.jsp 소스 Projection EPSG:4326 EPSG:3857 Precision OpenLayers 에 있는 소스는 namespace import형식으로 되어있음. 소스 ..
NO 제목 작성자 조회수 작성일 $("#테이블아이디).DataTable(); - dataTables 기본설정

1. classpath:/mapper/aliasMybatis.xml 파일을 만들어 소스 작성 BoardVO클래스에 대한 alias 설정 : boardVO 2. root-context.xml 소스 추가 sqlSessionFactory 빈을 설정할 때 같이 읽어주도록 설정 - 추가

서버 실행 시 No bean named 'springSecurityFilterChain' is defined 오류가 뜨면 1. web.xml 확인 - contextConfigLocation의 security-context.xml 설정 확인. 2. security-context.xml 확인 - http 요소가 있는지 확인

1. security-context.xml 수정 - 기존에 임시로 지정해줬던 user, admin 계정을 주석처리 후 jdbc 연결설정 코드 추가 - (dataSource 추가) - users 테이블 추가 Column = username, password, enabled - 테이블 값 insert - username : admin00 , password : pw00, enabled : 1 - ex) insert into users(username, password, enabled) values('admin00', 'pw00', '1'); insert into users(username, password, enabled) values('user00', 'pw00', '1'); - authorities 테이..
특정 데이터 컬럼 값을 비교하기 위해 쿼리를 짜던 도중에 앞에 10자리만 비교를 하기 위해 쿼리 작성 SUBSTR(컬럼명, 시작위치, 길이) - 컬럼값 자르기 SUBSTRB(컬럼명, 시작위치, 길이) - 컬럼값 자르기 ( 한글의 경우 값이 깨지는 경우가 있어 Byte단위로 자르기) SELECT DISTINCT * FROM ( SELECT SUBSTR(no, 0, 10) as no FROM TEST_TB ) WHERE no < 1234567890