https://pythonblog.co.kr/blog/79/ 73 HTTP/2 적용 및 확인하기-curl HTTP/2는 어플리케이션을 최적화 하고 성능을 향상 시킬수 있다고 합니다. 구글문서에 자세히 설명이 나와있습니다. https://w pythonblog.co.kr https://da-nyee.github.io/posts/network-how-to-set-up-nginx-with-http2.0/ [Network] Nginx에 HTTP 2.0을 적용하는 방법 (How to set up Nginx with HTTP 2.0) 필자는 Docker로 Nginx를 구성했다. 따라서, 이어지는 과정은 Docker를 기반으로 진행된다. (추가) 덧붙임에 Nginx를 직접 컴파일하는 경우에 대한 정보를 적어뒀다. d..
@Test @EnabledOnOs(OS.WINDOWS) void EnabledOnOs_OS_WINDOWS() { //given final Study study = new Study(StudyStatus.ENDED, 10); //then assertThat(study.getLimit()).isGreaterThan(9); } @Test @EnabledOnOs(OS.MAC) void EnabledOnOs_OS_MAC() { //given final Study study = new Study(StudyStatus.ENDED, 10); //then assertThat(study.getLimit()).isGreaterThan(9); } https://velog.io/@hyun6ik/JUnit5-%EC%A1%B0%E..
https://stackoverflow.com/questions/29014063/ignore-a-folder-in-search-results Ignore a folder in search results I'm searching for a string and getting matches in a source folder, and a build folder (file in source gets copied to build during build). I do not need the build folder result. Vim has wildignore... stackoverflow.com
빈생성자 추가 https://azurealstn.tistory.com/74 cannot deserialize from object value 에러! cannot deserialize from object value (no delegate- or property-based creator) 위와 같은 에러가 발생했다면 아래글을 한번 확인해보자. Member Class 먼저 데이터를 담을 모델을 정의하였습니다. //Getter, Setter는 생략 p azurealstn.tistory.com
상태 코드 상태 텍스트 한국어 뜻 서버 측면에서의 의미 4XX Client Error 클라이언트 에러 클라이언트의 요청에 오류가 있다. 400 Bad Request 잘못된 요청 요청의 구문이 잘못되었다. 클라이언트가 모르는 4xx 계열 응답 코드가 반환된 경우에도 클라이언트는 400과 동일하게 처리하도록 규정하고 있습니다. 401 Unauthorized 권한 없음 지정한 리소스에 대한 액세스 권한이 없다. 응답 헤더 WWW-Authenticate에 필요한 인증 방식을 지정합니다. 402 Payment Required 결제 필요 지정한 리소스를 액세스하기 위해서는 결제가 필요하다. 이 응답 코드는 실제로는 사용되지 않습니다. 403 Forbidden 금지됨 지정한 리소스에 대한 액세스가 금지되었다. 401..
File tempFile = new File( "/tmp/", fileName ); https://stackoverflow.com/questions/48096609/create-temp-file-with-specific-name/77464295#77464295 Create Temp File with specific name I need to create Temp File with specific name without Random Number and if there are no solutions, How can I rename the generate file in Internal storage private File createImageFile() throws stackoverflow.com
https://jeong-pro.tistory.com/238 Spring ApplicationEvent 비동기로 처리될 것만 같지? ApplicationEventListener는 비동기가 아니다 스프링(Spring) 프레임워크를 공부하면서 왠지 모르게 가끔씩 이벤트 드리븐(Event Driven)이라는 단어도 듣게 됐다. 뿐만 아니라 스프링 5 이후로는 WebFlux가 등 jeong-pro.tistory.com default: sync async: EnableAsync -> Async
git remote add origin https://github.com/user/repo1.git https://cheershennah.tistory.com/217 git 저장소 주소 repository 변경하기 git 저장소 주소 repository 변경하기 Git에서 remote repository를 다른 주소 URL로 변경해 보자. 예를 들어 기존의 repository에서 형상관리를 하다가 새로운 repository를 생성 한 경우,새 repository로 형상관리 cheershennah.tistory.com
/github subscribe owner/repo [feature] /github unsubscribe owner/repo [feature] https://github.com/integrations/slack#subscribe-to-an-organization-or-a-repository GitHub - integrations/slack: Bring your code to the conversations you care about with the GitHub and Slack integration Bring your code to the conversations you care about with the GitHub and Slack integration - GitHub - integrations/sl..
@Service @CacheConfig(cacheNames = "square") @Scope(proxyMode = ScopedProxyMode.TARGET_CLASS) public class MathService { @Autowired private MathService self; // other code public double sumOfSquareOf3() { return self.square(3) + self.square(3); } } https://www.baeldung.com/spring-invoke-cacheable-other-method-same-bean
@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의..
- Total
- Today
- Yesterday
- 책그림
- 테슬라 리퍼럴 코드
- 테슬라 레퍼럴
- 테슬라 크레딧 사용
- 클루지
- Kluge
- follower
- 모델 Y 레퍼럴
- 테슬라 리퍼럴 코드 혜택
- 유투브
- Bot
- 어떻게 능력을 보여줄 것인가?
- 김달
- 개리마커스
- 메디파크 내과 전문의 의학박사 김영수
- 테슬라 레퍼럴 적용 확인
- 팔로워 수 세기
- COUNT
- 테슬라
- 레퍼럴
- 할인
- 테슬라 리퍼럴 코드 생성
- wlw
- 테슬라 레퍼럴 코드 확인
- 테슬라 추천
- 모델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 |