일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot
- github
- oracle between
- hikaricp
- between 날짜
- intellij
- datasource
- bitbucket
- oracle
- template
- log4j2
- log4j profile
- Spring
- between date
- Spring Boot
- python 개발환경
- mybatis
- 배열스트링
- STS
- git
- Gradle
- Spring Security
- Java
- 라즈베리파이
- ubuntu
- hikari
- MySQL
- Linux
- ORACLE CLOUD
- catalina log
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboot
- github
- oracle between
- hikaricp
- between 날짜
- intellij
- datasource
- bitbucket
- oracle
- template
- log4j2
- log4j profile
- Spring
- between date
- Spring Boot
- python 개발환경
- mybatis
- 배열스트링
- STS
- git
- Gradle
- Spring Security
- Java
- 라즈베리파이
- ubuntu
- hikari
- MySQL
- Linux
- ORACLE CLOUD
- catalina log
- Today
- Total
목록전체 글 (63)
파워노트
* Entity Class ==> Lombok 사용시 주의. ==> ToString() method 사용시 주의 무한 루프 위험있음. stackoverFlow 현상 발생함. * Controller return Response 객체로 Entity 객체를 사용하지 말아라.. => Rest Api 등에서 ResponseEntity 등의 리턴 값이 존재 할경우 Json parser에 의해서 에러가 발생할 수 있다. ( fetch = FetchType.LAZY 등의 설정시 문제됨 ) [UserDevice Controller ] Json parsing 오류 발생함. @PostMapping(value = "/userdevice") public ResponseEntity registUser(@RequestBody Re..
현재 실행되고 있는 java 프로세스 모두 종료 하기. ps -ef | grep java | grep -v grep | awk '{print $2}' | xargs kill -9

** intelliJ version : IntelliJ IDEA 2018.1 이후 버전 # IntelliJ 에서 devtools 개발도구를 설치 하면 이상하게 EClipse에서 잘되던 자동 컴파일 이 안된다. # devtools 를 반영하고 적용하는것을 해보자. 참고 URL : https://blog.jetbrains.com/idea/2018/04/spring-and-spring-boot-in-intellij-idea-2018-1/ Spring and Spring Boot in IntelliJ IDEA 2018.1 – IntelliJ IDEA Blog | JetBrains IntelliJ IDEA 2018.1 comes, as usual, with a lot of features to support de..