@Query( value = "SELECT t.tutor_id " + "FROM susukgwan.tutoring AS t " + "JOIN susukgwan.note AS n " + "ON t.id = n.tutoring_id " + "JOIN susukgwan.review AS r " + "on n.id = r.note_id " + "WHERE r.id = :reviewId", nativeQuery = true ) Long GetTutorIdOfReview(@Param(value = "reviewId") Long reviewId); https://pgmjun.tistory.com/10 [SpringBoot] JPA 카멜케이스 컬럼명 적용법 JPA 와 MySQL 을 연동하여 사용하는 경우, 카멜표기법으..
최대 TPS = 1개의 커넥션의 초당 처리 요청 개수 * 동시 커넥션 개수 동시 커넥션 개수 = 최대 TPS / 1개 커넥션의 초당 요청 처리개수 = 최대 TPS / (1초 / 쿼리 실행 시간) 예시 목표 TPS 100 요청이 실행하는 쿼리 총 실행 시간이 0.1초 동시에 필요한 커넥션 개수를 단순 계산하면 동시 커넥션 개수 = 100 / (1 / 0.1 ) = 10 개다. 최대 커넥션 개수가 10개고 한 요청에 평균 0.1초가 소요되면 100 TPS를 처리할 수 있다. https://velog.io/@mohai2618/%EC%84%B1%EB%8A%A5%EC%9D%84-%EC%B5%9C%EC%A0%81%ED%99%94-%ED%95%B4%EB%B3%B4%EC%9E%90-HikariCP-%ED%8E%B8 성..
mybatis: type-aliases-package: com.shlee.toy1 mapper-locations: classpath:mapper/*.xml,mapper/**/*.xml configuration: map-underscore-to-camel-case: true aggressive-lazy-loading: false lazy-loading-enabled: true lazy-load-trigger-methods: '' type-handlers-package: com.shlee.toy1.common.handler.type https://www.holaxprogramming.com/2015/11/12/spring-boot-mybatis-typehandler/ Spring Boot에서 myBatis의..
bindkey "[D" backward-word bindkey "[C" forward-word bindkey "^[a" beginning-of-line bindkey "^[e" end-of-line https://bryan.wiki/303 MacOS iterm2 + zsh 에서 cursor 이동을 편하게 MacOS 기본 터미널 bash command-line ⌥ + ← 또는 ⌥ + → : 커서를 왼쪽 단어 또는 오른쪽 단어로 ⌘ + ← 또는 ⌘ + → : 커서를 start 또는 end of line 으로 zsh 의 경우 ESC B 또는 ESC F : 커서를 왼쪽 또는 오 bryan.wiki
run repeatBlock@ { // need to make a label outside of the repeat! repeat(20) { idx -> println(">> $idx") if(idx >= 2) return@repeatBlock } } https://stackoverflow.com/questions/68277152/how-can-i-break-out-of-a-kotlin-repeat-loop How can I break out of a Kotlin `repeat` loop? How do I break out of a Kotlin repeat loop? (I see plenty of answers about forEach, but I want to see a repeat-specific a..
@Value("${some.key:my default value}") private String stringWithDefaultValue; @Value("${some.key:})" private String stringWithBlankDefaultValue; @Value("${some.key:true}") private boolean booleanWithDefaultValue; @Value("${some.key:42}") private int intWithDefaultValue; @Value("${some.key:one,two,three}") private String[] stringArrayWithDefaults; @Value("${some.key:1,2,3}") private int[] intArra..
@RequestMapping("/index") public void index(@RequestParam(name="p", defaultValue="1") String page) { int value = Integer.parseInt(page); } https://ddoongi.tistory.com/282 [Spring MVC] Query String 파싱, @RequestParam Java Doc for @RequestParam https://docs.spring.io/spring-framework/docs/current/javadoc-api/org/springframework/web/bind/annotation/RequestParam.html Query String 파싱 Servlet programmi..
http .requestMatchers() .antMatchers("/lti1p/**","/lti2p/**") .and() .addFilterBefore(ltioAuthProviderProcessingFilter, UsernamePasswordAuthenticationFilter.class) .authorizeRequests().anyRequest().hasRole("LTI") .and().csrf().disable(); https://stackoverflow.com/questions/25234164/spring-security-http-antmatcher-with-multiple-paths spring security http antMatcher with multiple paths I have the ..
iOS Android 간체 (중국) zh-Hans zh-rCN 번체 (대만) zh-Hant zh-tTW https://yoonhg84.tistory.com/247 헷갈리는 중국어(간체,번체) 코드 헷갈리는 중국어 코드를 안드로이드와 비교 iOS Android 간체 (중국) zh-Hans zh-rCN 번체 (대만) zh-Hant zh-tTW yoonhg84.tistory.com 로케일 이름 언어 국가 또는 지역 ASCII 코드 페이지 언어 그룹 ar_AA 아랍어 아랍 국가 IBM-864, IBM-1256 아랍어 be_BY 벨라루스어 벨라루스 IBM-866, IBM-1251 라틴어 5 bg_BG 불가리아어 불가리아 IBM-855, IBM-1251 라틴어 5 ca_ES 카탈로니아어 스페인 IBM-850, IB..
@GetMapping(value = {"/test/{cnt}", "/test"}) public String methodName(@PathVariable(required = false) Integer cnt){ if(cnt == null) cnt = 1; // TODO.. return "test"; } @GetMapping(value = {"/test/{cnt}", "/test"}) public String methodName(@PathVariable(required = false) Optional cnt){ int num = Optional.orElse(1); // TODO.. return "test"; } https://leeborn.tistory.com/entry/Spring-PathVariable-..
https://stackoverflow.com/questions/29740078/how-to-call-super-constructor-in-lombok how to Call super constructor in Lombok I have a class @Value @NonFinal public class A { int x; int y; } I have another class B @Value public class B extends A { int z; } lombok is throwing error saying it cant find A() stackoverflow.com https://velog.io/@nawhew/%EB%A1%AC%EB%B3%B5-AllArgumentConstructor%EB%8A%94..
spring: jpa: properties: hibernate: show_sql: true format_sql: true use_sql_comments: true highlight_sql: true logging: level: org: hibernate: SQL: debug type: descriptor: sql: trace https://lannstark.tistory.com/14 Spring Boot SQL 보기 옵션 총 정리 Spring Boot에서 query DSL을 사용하건 spring boot JPA를 사용하건, 쿼리를 튜닝할 때 SQL을 봐야할 때가 있다. 그럴 때 사용할 수 있는 몇 가지 옵션을 조사해 보았다. 환경 : Spring boot 2.* + hibernate 5.3.10 이 la..
JPA 자료형 매핑Hibernate 매핑 자료형 Java자료형DB자료형숫자날짜·시간문자열 Byte tinyint(4) Short smallint(6) Integer int(11) Long bigint(20) BigDecimal decimal(19,2) Float float Double double Boolean bit(1) Date date LocalDateTime[1] datetime Time time String varchar(255) Clob longtext Byte[][2] tinyblob Blob longblob https://zetawiki.com/wiki/JPA_DB%EC%9E%90%EB%A3%8C%ED%98%95_%EB%A7%A4%ED%95%91 JPA DB자료형 매핑 - 제타위키 zeta..
- Total
- Today
- Yesterday
- 인스타그램
- Bot
- 책그림
- 클루지
- Kluge
- 연애학개론
- 테슬라 리퍼럴 코드 생성
- 테슬라 추천
- 어떻게 능력을 보여줄 것인가?
- 테슬라 리퍼럴 코드 혜택
- follower
- 테슬라
- 유투브
- 팔로워 수 세기
- 테슬라 레퍼럴 코드 확인
- 할인
- 테슬라 리퍼럴 코드
- wlw
- 개리마커스
- 테슬라 레퍼럴 적용 확인
- 레퍼럴
- 모델y
- 메디파크 내과 전문의 의학박사 김영수
- COUNT
- 모델 Y 레퍼럴
- 테슬라 레퍼럴
- 테슬라 크레딧 사용
- 김달
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |