logging: level: org: springframework: security: web: FilterChainProxy: logging: level: 'org.springframework.security.web.FilterChainProxy': TRACE https://kdevkr.github.io/spring-boot-logging-level/ 스프링 부트 로깅 레벨 선언 (Feat. Yaml) application.propertieslogging.level.org.springframework.security.web.FilterChainProxy=TRACE 스프링 부트 애플리케이션에서 logging.level 하위에 패키지와 클래스 명을 선언하면 로깅 레벨을 쉽게 조정할 수 있고 스프링 kdevk..
https://velog.io/@kmdngmn/Spring-Transactional [Spring] @Transactional with try~catch 롤백(Rollback) 에 관하여 조회 로직만 있는 경우@Transactional(readOnly=true)삽입/삭제/수정 로직이 있는경우@Transactional 또는 @Transactional(readOnly=false)@Transactional 어노테이션의 default는 readOnly=fals velog.io
https://holika.tistory.com/entry/%EB%82%B4-%EB%A7%98%EB%8C%80%EB%A1%9C-%EC%A0%95%EB%A6%AC%ED%95%9C-Kotlin-JvmOverloads-constructor%EB%A5%BC-%EC%9D%BC%EC%9D%BC%EC%9D%B4-%EC%83%81%EC%86%8D%EB%B0%9B%EC%95%84-%EB%A7%8C%EB%93%A4%EA%B8%B0-%EA%B7%80%EC%B0%AE%EB%8B%A4%EB%A9%B4 [내 맘대로 정리한 Kotlin] @JvmOverloads: constructor를 일일이 상속받아 만들기 귀찮다면! 생성자(constructor) 클래스의 생성자를 설정하는 데에는 다양한 방법이 있다. 아래처럼 주 생성자를 설정..
https://sub.isthislee.com/mysql-id-column/ [MySQL] MySQL id컬럼의 data type (INT vs BIGINT) MySQL id컬럼의 data type에 대하여 sub.isthislee.com 컬럼 수가 43억개 이상 넘어갈 정도로 큰 서비스 규모가 아니고, 속도 차이와 type 지정의 번거로움을 줄이기 위해 INT 데이터타입을 사용하기로 하였다. TypeMaximum Value SignedMinimum Value SignedMaximum Value UnsignedMinimum Value UnsignedStorage(Bytes) INT 2,147,483,647 (약 21억) -2,147,483,648 (약 -21억) 4,294,967,295 (약 43억) 0..
https://breakcoding.tistory.com/387 [Spring Boot] 타임리프 Could not parse as expression: "${}어쩌구" 스프링부트 Thymeleaf에서는 변수를 쓸 때 ${변수} 이런 식으로 쓸 수 있다. 내가 오늘 개발을 하다가 이런 코드를 작성했다. 그런데 "800"이 아니라 "800원"으로 보이면 좋을 것 같아서 코드를 이렇게 breakcoding.tistory.com
The following example creates a MessageFormat instance that can be used repeatedly: int fileCount = 1273; String diskName = "MyDisk"; Object[] testArgs = {new Long(fileCount), diskName}; MessageFormat form = new MessageFormat( "The disk \"{1}\" contains {0} file(s)."); System.out.println(form.format(testArgs)); The output with different values for fileCount: The disk "MyDisk" contains 0 file(s)...
https://mangkyu.tistory.com/205 [Spring] @RestControllerAdvice를 이용한 Spring 예외 처리 방법 - (2/2) 예외 처리는 robust한 애플리케이션을 만드는데 매우 중요한 부분을 차지한다. Spring 프레임워크는 매우 다양한 에러 처리 방법을 제공하는데, 앞선 포스팅에서 @RestControllerAdvice를 사용해야 하는 mangkyu.tistory.com @RestControllerAdvice public class GlobalExceptionHandler { @ExceptionHandler(NoSuchElementFoundException.class) protected ResponseEntity handleIllegalArgumentExce..
https://stackoverflow.com/questions/5129552/generatedvaluestrategy-generationtype-auto-not-working-as-thought @GeneratedValue(strategy = GenerationType.AUTO) not working as thought I'm trying to persist an object to a database. Keep getting 'Column ID cannot accept null value error'. My object looks like this: @Entity public class TestTable { @Id @GeneratedValue( stackoverflow.com
openssl rsa -in key.pem.orig -out key.pem Enter pass phrase for key.pem.orig: [비밀번호 입력] writing RSA key [완료] https://dev.meye.net/entry/SSL-%EC%9D%B8%EC%A6%9D%EC%84%9C-%EA%B0%9C%EC%9D%B8%ED%82%A4-%EB%B9%84%EB%B0%80%EB%B2%88%ED%98%B8-%EC%97%86%EC%95%A0%EA%B8%B0 SSL 인증서 개인키 비밀번호 없애기 웹서버를 운영하면서 https 보안 서버를 사용하기 위해서는 인증기관에서 SSL 인증서를 발급받는다. 발급받은 개인키에 비밀번호가 걸려있을 경우에는 아파치 웹서버를 실행할 때마다 다음과 같 dev.meye.net
... https://webfirewood.tistory.com/94 thymeleaf에서 null check 하기(isEmpty) 오늘의 미션, 만약 view 단에서 보여줘야 하는 데이터가 없으면(아마도 DB에서 삭제된 경우) 프론트단에 데이터를 보여주는 div 태그를 없애야 한다. 아 그야 식은 죽 먹기죠. data가 null인지 아닌지 webfirewood.tistory.com
find() : result? https://antop.tistory.com/entry/orgspringframeworkdaoEmptyResultDataAccessException-Incorrect-result-size-expected-1-actual-0 org.springframework.dao.EmptyResultDataAccessException: Incorrect result size: expected 1, actual 0 Spring + JDBC를 이용하여 개발 시에 queryForObject(...) 메소드를 사용하여 하나의 객체만 가져올 경우 해당 데이터가 없으면 org.springframework.dao.EmptyResultDataAccessException 예외가 발생하게 된다. pack..
@Profile: 해당 환경에만 실행 @ActiveProfiles: 현재 실행시키는 환경 변경 https://blogshine.tistory.com/527 [Spring] @Profile과 @ActiveProfiles 를 통한 활성 프로파일(Profile)의 관리 개발을 진행하다보면 환경설정 파일들을 분리하거나, 가져와야하는 경우가 많다. 이에 대하여 알아보자. 우선 활성프로필에 대하여 잠시 알아봅시다. ▶ 활성 프로파일 활성 프로파일이란 스프 blogshine.tistory.com
https://velog.io/@yeezze/No-enum-constant-enum-%EC%97%90%EB%9F%AC No enum constant enum 에러 spring 돌리는데 계속 enum 에러가 나서 헤맸던 이야기..No enum constant enumJPA에서 find()하는데 전까지 안 뜨던 새로운 이 에러가 계속 뜨면서 오류가 났다.😱 갑자기??? 왜지??????구글링을 해서 뒤져보 velog.io
- Total
- Today
- Yesterday
- 모델 Y 레퍼럴
- 테슬라 레퍼럴 적용 확인
- 클루지
- 연애학개론
- 테슬라 레퍼럴
- 유투브
- 테슬라 레퍼럴 코드 확인
- COUNT
- 레퍼럴
- 팔로워 수 세기
- 테슬라 리퍼럴 코드
- 책그림
- 할인
- 테슬라 리퍼럴 코드 혜택
- 테슬라 추천
- 테슬라
- wlw
- 김달
- 테슬라 리퍼럴 코드 생성
- 어떻게 능력을 보여줄 것인가?
- 인스타그램
- follower
- Kluge
- 메디파크 내과 전문의 의학박사 김영수
- 모델y
- 테슬라 크레딧 사용
- 개리마커스
- Bot
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |