본문 바로가기

공부101

[IntelliJ]No tests found for given includes: 오류 해결법 File > Settings (Ctrl + shift + s) > Build,Excevution, Deployment > Build Tools > Gradle 선택 Gradel로 되어있는 두 부분을 IntelliJ IDEA 로 변경 -> 해결! 2022. 6. 21.
인텔리제이 빨간줄 alt+Enter로 import해서 없애기.. 책 그대로 따라했는데 왜 빨간가 의문이 들면 alt + Enter를 눌러 import 해보자.. 2022. 6. 21.
[스프링 부트와 AWS로 혼자 구현하는 웹 서비스]build.gradle 오류 해결. gradle 반영 reload하기_윈도우 - 책에 나와있는 대로 compile() testCompile() 하면 오류나고 compielClasspath() , testCompileClasspath() 로 해야 오류가 해결된다. - jcenter가 더이상 지원되지 않아 일단 주석처리를 하였다. buildscript { ext { springBootVersion = '2.1.7.RELEASE' } repositories { mavenCentral() // jcenter() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") } } apply plugin: 'java' apply plugin: 'eclipse' apply.. 2022. 6. 21.
[프로그래머스]주차 요금 계산_JAVA https://programmers.co.kr/learn/courses/30/lessons/92341?language=java# 코딩테스트 연습 - 주차 요금 계산 [180, 5000, 10, 600] ["05:34 5961 IN", "06:00 0000 IN", "06:34 0000 OUT", "07:59 5961 OUT", "07:59 0148 IN", "18:59 0000 IN", "19:09 0148 OUT", "22:59 5961 IN", "23:00 5961 OUT"] [14600, 34400, 5000] programmers.co.kr hashmap 정렬 (문자열 사전순으로 키 정렬) Map sortedmap = new TreeMap(map); 문자열→숫자 Integer.parseInt(st.. 2022. 6. 5.