언어14 [Java] 동기식 처리와 비동기식 처리 ( feat. 블록킹 논블록킹을 곁들인 ) https://webheck.tistory.com/entry/Java%EB%8F%99%EA%B8%B0%EC%99%80-%EB%B9%84%EB%8F%99%EA%B8%B0-%EB%B0%A9%EC%8B%9DAsynchronous-processing-model [Java]동기와 비동기 방식(Asynchronous processing model)출처 - https://poiemaweb.com/js-async 취업을 준비하던 중 서버 비동기 연동 경험 이란 문구를 보게 되었다. 맨날 동기 비동기 연동이라는 단어를 많이 들어 봤으나 막상 개념을 머릿속에서 꺼내 보자니webheck.tistory.com 위 글은 내가 개발자가 되기전에 내 나름대로 공부하고 나름대로 이해했다고 작성한 무려 5년전에 작성한 글이다.해당글.. 2025. 1. 11. [Java] record type jdk 14 버전 이후부터 제공되는 데이터 타입. class 형태중 불변 class로 정의할 때 사용된다. 즉 해당 클래스는 생성자와 getter(), toString() 메소드를 포함하고 있는 형태라고 볼수있다. 기존의 불변객체 정의 public class Test { private final String name; private final String contents; public Test(String name, String contents) { this.name = name; this.contents = contents; } public String getName() { return name; } public String getContents() { return contents; } } record.. 2022. 12. 6. [Java] KST 시간변환 KST 시간예시 Sat Jan 01 00:00:00 KST 2022 변환방법 SimpleDateFormat 을 이용. 여기서 중요한점 KST 포멧을 받을 SimpleDateFormat 과 원하는 포멧으로 바꿀 SimpleDateFormat 두가지가 필요하다. @Test public void dateFormatTest() throws JSONException, ParseException { String date = "Sat Jan 01 00:00:00 KST 2022"; SimpleDateFormat recFormat = new SimpleDateFormat("E MMM dd HH:mm:ss z yyyy",Locale.ENGLISH); SimpleDateFormat sdf = new SimpleDateFo.. 2022. 8. 16. [Go] Golang 기본정리 https://blue-country-190.notion.site/Golang-515a6a51d9fd450a811dc23ac8d04100 Golang 아래 정리내용은 고투어(go-tour) 예제를 정리한 내용입니다. blue-country-190.notion.site 해당 내용은 아래 "고투어" 사이트의 예제를 정리한 노션 페이지 입니다. https://go-tour-ko.appspot.com/ Go를 향한 여행 go-tour-ko.appspot.com 2022. 8. 11. [JUnit5] 테스트 코드 시작해보기 - 2 태깅/ 필터링 @Tag 어노테이션을 이용하여 메서드 태깅이 가능하다. `@Tag("태그명")` 테스트 사용하기 Intellij 기준 Test Configuration 에서 테스트 사용할 태그명 입력 가능하다. class TestServiceTest { @Test @Tag("do") void test(){ System.out.println("do"); } @Test @Tag("not") void test2(){ System.out.println("not"); } } maven or gradle 설정을 통해 build 할때 진행되는 테스트 커버리지 설정도 가능하다. maven maven-surefire-plugin do gradle // 해당 테스트 미포함 tasks.named('test') { useJUn.. 2022. 7. 15. 이전 1 2 3 다음 반응형