일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 리팩토링
- Spring Boot
- 스프링부트
- github
- 리액트
- MySQL
- 파이썬
- 자바
- 스프링
- VOA
- 코틀린
- AWS
- Winform
- 쿠버네티스
- 마이바티스
- 도커
- Spring
- design pattern
- springboot
- Python
- Java
- mybatis
- c#
- kubernetes
- react
- git
- machine-learning
- DataGridView
- Kotlin
- docker
- Today
- Total
목록Variable Things (187)
보뇨 다이어리
It added that rates of chlamydia, gonorrhea, trichomoniasis and syphilis are especially worrying. -> 클라미디아(성병), 임질, 질(膣) 트리코모나스증(症) 그리고 매독의 발병률이 특히 걱정스럽다고 덪붙혔다. The majority of the infections are easily preventable and curable -> 감염의 대부분은 쉽게 예방할수있고 치료할수있다. But in a new report, the WHO said that some diseases - especially gonorrhea – are changing over time into so-called super-bug forms. -> 그러나 W..
해당 url 은 rest api 규격에 좀 맞지않는 부분이 있지만 너그럽게 보시길...헤헿 원래 조회를 할때 조건으로 들어가는것들은 Params 쪽에 들어가지만 여기는 PathVariable 에 조건이 들어가기때문에 따라하지마세욧!! 각설하고 빨리 코드를 보자 아래 코드는 보면 2번째 라인에 param 부분이 pathVariable 이다. 여기에는 6번라인의 login_id 와 login_pw 두개가 들어있어야한다 데이터는 다음과 같다 /account/login_id=test@google.com&login_pw=1234 이 코드를 실행 시키면 login_pw 가 없다고 에러를 뱉어낸다 @SuppressWarnings({ "rawtypes" }) @RequestMapping(value = "/account..
갑자기 aws s3 를 쓰게되서 부랴부랴 세팅하고 있는데 마침 딱 원하는게 아래 링크작성자분이 작성한거라 참고함 근데 AmazonS3Client 의 생성자가 deprecated 가 되어있는거 :( 뭐시기뭐시기 builder 로 쓰라고하는데 영 불편해서 포스팅하기로 맘먹음 (별것도 아니지만...헤헤) 문제의 코딩은 이부분이다 AmazonS3Client(credentials, clientConfig) 아놔 코드내부에서는 가운데줄안되네 private String accessKey = "xxxxxx"; // 엑세스 키 private String secretKey = "yyyyyyy"; // 보안 엑세스 키 private AmazonS3 conn; public S3Util() { AWSCredentials cre..
일단 코드부터 보자 코드상단부분에는 이미 dataGridView_student 의 초기화가 진행되어 자동으로 row 를 클릭할수있도록하는것이다 추가적으로 dataGridView_student 컴포넌트는 FullRowSelect 로 설정되어있다 dataGridView_student.Rows[0].Selected = true; dataGridView_student_CellMouseUp(null, null); 그리고 다음 로직인 해당 부분을 탈때 에러가 발생한다 디버깅할때보니 CurrentCell 이나 CurrentRow 부분이 아예 null 이였다 근데 원인은 생각보다 간단했다 버그가 아닌가 싶기도하지만... int index = dataGridView_student.CurrentCell.RowIndex;맨..
오호라....마크다운을 쓸수있는지몰랐는데 앞으로 마크다운으로 작성하겠음!! 헤헤헤 우선 마이바티스 xml 코드를 보면 이런식으로 되어있음 resultType 에 있는 경로에 모델클래스의 멤버에는 id, student_id, graduate_datetime 이 존재함 select id, student_id, date_format(graduate_datetime, '%Y-%m-%d') from student_graduate where student_id = #{id} and is_alive = 1 order by id desc limit 1 근데 이상하게 가져오면 이런식으로 가져오게 된다 { "id":1, "student_id":230, "graduate_datetime": null } sta..
엄청 간단한거라 포스팅을 해야하나 잠깐 생각했지만 혹시 저와 같은 사람이 있을까봐 적어둠...(제발 있어라...) 회사에 이런 코드가 엄청 많아서 처음에 볼때 비기싫어서 바꿔야지했는데 어느덧 시간이...ㄷㄷ;대부분 이런 코드가 있는부분은 dataGridView 의 cell 클릭 이벤트 내부에 달려있는데 처음 폼은 초기화단계에서 해당 이벤트를 실행하기때문에 처음만 캐치부분으로 빠지고 나중에는 잘 작동된다 (물론 후 코딩을 잘했다는 가정하에)그렇다 하더라도...이건 설명하기 힘들정도로 보기싫어서 대안을 찾아보았다123456789int index = 0;try{ index = dataGridView34_detail.SelectedRows[0].Index;}catch (Exception ex){ Console...
뭐 이어서 쓰자면 쿠버네티스도 특정 버전을 설치해야만했다그래서 뭐 어떻게하지 보니 역시나 stackoverflow 분들이 아주 잘써주셨다 아래와 같이 진행하면된다 To install specific version of the package it is enough to define it during the apt-get install command:apt-get install -qy kubeadm= But in the current case kubectl and kubelet packages are installed by dependencies when we install kubeadm, so all these three packages should be installed with a specific ve..
쿠버네티스를 사용하기위해서 도커를 설치했는데 도커를 최신버전으로 설치하는바람에 워닝이 뜸그래서 다운그레이드 찾아보다가 생각보다 많이 없어서 여기에 포스팅함 Manuallly placed my site in read-only modePerformed apt-get update/upgrade (not really relevant buy hey, why not)Power offTake snapshot (digital ocean)Power onEnsure site is still in read only modeRemove my docker app: ( docker rm -f app )Stop the docker service ( service docker stop )Downgrade Docker to 17.10..