목록분류 전체보기 (160)
영원히 흘러가는 강
thewayaboutme.tistory.com/165 스프링부트 책 3단원: spring data JPA 다뤄보기 * 본문은 (2019, 이동욱, 프리렉)을 공부하고 정리한 내용입니다. 코드에서 import 부분은 모두 생략했습니다. - import static ~ : 임포트의 스태틱은 무슨 �� thewayaboutme.tistory.com 근 1주일을 오류 잡는데 시간을 사용했지만 잘 정리된 글이 있어서 오류를 해결했다.... 나름 괜찮은 삽질인듯하다. 어떤게 문제인지를 파악했고 왜 안되는지에 대해 이해 위의 글을 읽고 해결 105p. @PutMapping("/api/v1/posts") //@PutMapping->@PostMapping 으로 변경 @PostMapping("/api/v1/posts") ..
1096. 바둑판에 올려 놓을 흰 돌의 개수(n)가 첫 줄에 입력된다. 둘째 줄 부터 n+1 번째 줄까지 힌 돌을 놓을 좌표(x, y)가 n줄 입력된다. n은 10이하의 자연수이고 x, y 좌표는 1 ~ 19 까지이며, 같은 좌표는 입력되지 않는다. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int arr[][]=new int[20][20]; int n=sc.nextInt(); for(int i=0;i
1091. 시작 값(a), 곱할 값(m), 더할 값(d), 몇 번째인지를 나타내는 정수(n)가 입력될 때, n번째 수를 출력하는 프로그램을 만들어보자. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a=sc.nextInt(); int m=sc.nextInt(); int d=sc.nextInt(); int n=sc.nextInt(); for(int i=1;i
1086. 이미지의 가로 해상도 w, 세로 해상도 h, 한 픽셀을 저장하기 위한 비트 b 가 주어질 때, 압축하지 않고 저장하기 위해 필요한 저장 용량을 계산하는 프로그램을 작성해 보자. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int w=sc.nextInt(); int h=sc.nextInt(); int b=sc.nextInt(); int sum=0; if(w
1081. 1부터 n까지, 1부터 m까지 숫자가 적힌 서로 다른 주사위 2개를 던졌을 때 나올 수 있는 모든 경우를 출력해보자. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x=sc.nextInt(); int y=sc.nextInt(); for(int i=1;i
스프링부트와aws로혼자구현하는웹서비스 p.74 명령 실행자의 기본값을 변경 시켜주었더니 해결완료 settings-> build,Execution,Deployment ->Gradle run tests using의 Gradle (default) ---> Intellij IDEA로 변경 시켰더니 오류 해결
1076. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); char x=sc.nextLine().charAt(0); int y=(int)x; int z=97; if(y123) System.out.println("영어 소문자만 가능"); else { for(;z
1071. 정수가 순서대로 입력된다. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); while(true) { int x=sc.nextInt(); if(x==0) break; System.out.println(x); } }} 1072. n개의 입력된 정수를 순서대로 출력해보자. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x=sc.nextInt(); f..
1066 .세 정수 a, b, c가 입력되었을 때, 짝(even)/홀(odd)을 출력해보자. import java.util.Scanner; public class main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int x=sc.nextInt(); int y=sc.nextInt(); int z=sc.nextInt(); holjjak(x); holjjak(y); holjjak(z); } public static void holjjak(int num) { if(num%2==0) System.out.println("짝"); else System.out.println("홀"); } } 1067. 정수 1개가 입..
p.63. 테스트 코드에서 아래와 같이 404 에러가 뜨길래 확인해보았던 파일경로에서 오류가 발생하여 고침 Status expected: but was: Expected :200 Actual :404 test\java\com\ryu\book\springboot\HelloControllerTest.java 위치를 test\java\com\ryu\book\springboot\web\HelloControllerTest.java 으로 변경 이는 메인 경로와 같아야하지만 경로 오류로 인한 404 오류 메시지