일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- VPN
- redis
- 도커
- codebuild
- IntelliJ
- JavaScript
- or some instances in your deployment group are experiencing problems.
- Spring Error
- docker
- java bigdecimal
- chart.js
- codepipeline
- aws cicd
- AWS CI/CD 구축하기
- Airflow
- codedeploy
- PostgreSQL
- Flux
- node
- chartjs
- aws
- codedeploy error
- Kafka
- Spring
- SQL
- Python
- COALESCE
- kubeflow
- bootstrap
- Jenkins
- Today
- Total
목록전체 글 (641)
Small Asteroid Blog
PageRequest 생성자를 이용한 pageable 사용법이다. 생성자 설명 PageRequest(int page, int size) 페이지 번호(0부터 시작), 페이지당 데이터의 수 PageRequest(int page, int size, Sort.Direction direction, String … props) 페이지 번호, 페이지당 데이터의 수, 정렬 방향, 속성(칼럼)들 PageRequest(int page, int size, Sort sort) 페이지 번호, 페이지당 데이터의 수, 정렬 방향 Pageable paging = PageRequest.of(0, 10, Sort.Direction.ASC, "id"); PageRequest pageRequest = PageRequest.of(curPag..
다음과 같이 작성되어 있으면 일회성 클릭만 된다. $('#changedata').click(function(){ }); 다음과 같이 변경해주면 해당 값에 대해서 클릭이 계속 가능하다. $(document).on('click', '#changedata', function(){ });
Querydsl의 like로 코드를 작성하고 확인해보니 컬럼의 풀텍스트가 일치하는 것만 출력이 된다. 앞뒤로 %를 붙이니 부분 텍스트만 입력해도 일치하는 것으로 리스트가 출력된다. contains는 어떨까 싶어서 확인해보니 %를 넣지 않아도 like에다가 %를 앞뒤로 붙인 것과 같은 결과가 출력된다. query = query.where(UserEntity.name.like(userName)); //지정된 str(userName)과 같으면 return query = query.where(UserEntity.name.contains(userName)); //지정된 str(userName)이 포함되는 경우 true를 return

Failed to connect to repository : Command "git ls-remote -h -- https://github.com/gitID/projectName.git HEAD" returned status code 128: stdout: stderr: remote: Invalid username or password. fatal: Authentication failed for 'https://github.com/gitID/projectName.git/' 저장소에 제대로 접근이 되지 않아서 생기는 오류이다. 다음 에러가 생기는 원인으로는 public repository 는 바로 연동이 되지만 private repository의 경우에는 ssh key를 등록해야 정상적으로 git 에 적용..
checkbox checked 여부 - id로 체크하는 경우 $('input:checkbox[id="checkbox_id"]').is(":checked") == true - name으로 체크하는 경우 $('input:checkbox[name="checkbox_name"]').is(":checked") == true - $('input[id="checkbox_id"]') + 옵션 형태로 작성 가능 $('input[name="checkbox_name"]').is(":checked") - true, false 로 확인 //체크된 상태 $('input[name="checkbox_name"]').is(":checked") == true //체크 안 된 상태 $('input[name="checkbox_name"]'..
json $.each(jsondata,function (key,value){ }); 배열 $.each(value,function (index,value){ // console.log(key,'i > ',index,' ,v >',value); // strhtml += ""; //strhtml += ""; //$('#td'+key).append(strhtml); //$("input[name="+key+"]").val(value); }); 객체 // 키값 확인 Object.keys(data)