일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- springboottest
- java version
- easy
- LeetCode
- springboot
- no sources given
- error
- AWS CLI
- querydsl no sources given
- java 1.8 11
- el1008e
- 스프링부트테스트
- aws
- Java 1.8
- maybe not public or not valid?
- java 11
- Medium
- No tests found for given includes
- java 버전 변경
- yum install java
- property or field 'jobparameters' cannot be found on object of type
- java 여러개 버전
- log error
- mac os git error
- JUnit
- java
- xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools)
- springbatch error
- parse
- OpenFeign
- Today
- Total
목록전체 글 (116)
쩨이엠 개발 블로그

Given a non-empty array of decimal digits representing a non-negative integer, increment one to the integer. The digits are stored such that the most significant digit is at the head of the list, and each element in the array contains a single digit. You may assume the integer does not contain any leading zero, except the number 0 itself. Example 1: Input: digits = [1,2,3] Output: [1,2,4] Explan..
복붙이 안될때 ! 매번 해왔는데 갑자기 안되길래 찾아봤더니 정부24 페이지가 떠 있어서 보안프로그램이 작동했다 주민등록등본 신청하고 안꺼놔서 갑자기 복사가 안되었다 홈페이지를 닫고 나니 다시 정상적으로 동작했다 :)

SpringbootTest 어노테이션을 사용하다보면 굳이 서버를 올릴 필요 없이 간단하게 Test를 하고 싶을 때가 있다 예를 들면 정말 간단한 테스트코드 작성할 때 정말 Test만을 위한 프로젝트를 만들기로 한다 pom.xml junit junit 4.13 test package를 같이 해놔야 Test를 할 때 어려움이 없다 고 하지만 내 경우는 package도 default로 잡아놓았다 정말 자바코드를 위한 Test import static org.junit.Assert.*; import org.junit.Test; public class ServiceTest { @Test public void example(){ String pattern = "01(0|1)-\\d{3,4}-\\d{4}"; asse..
Assist를 보다보면 가끔씩 보이는 regex 정규식(Regular Expressions)만 제대로 이해해도 쓸 일이 많을 듯 하여 정리하기로 한다 정규표현식 Regular Expressions Description Example . 임의의 문자 1개를 의미 ^ 시작을 의미한다 [] 괄호 안에 있다면 일치하지 않는 부정의 의미로로 쓰인다 ^a : a로 시작하는 단어 [^a] : a가 아닌 철자인 문자 1개 $ $앞의 문자열로 문자가 끝나는지를 의미한다 a$ : a로 끝나는 단어 [] [] 괄호 안의 문자가 있는지를 확인한다 [ab][cd] : a,b중 한 문자와 c,d중 한 문자 -> ac ad bc bd - 사이의 문자 혹은 숫자를 의미한다 [a-z] : 알파벳 소문자 a부터 z까지 [a-z0-9] ..
gradle build시에 log에서 error가 나는 경우 error: cannot find symbol log.error("This code is not valid! ({})", code); ^ symbol: variable log application.yml의 dependency에 밑의 lombok을 추가해준다 ... compileOnly 'org.projectlombok:lombok:1.18.10' annotationProcessor 'org.projectlombok:lombok:1.18.10' ...