본문 바로가기

전체 글

(116)
git pr force push close 안 되기.. pr 연 상태에서 처음 commit을 reset하면 pr이 닫힌다.. 계속 작업해야 하는데... reset -> force push first commit reset -> force push : pr이 close된다. commit push하면 닫힌 pr을 reopen할 수 있긴 하다. reset -> new commit -> force push pr 닫히지 않고 작업 가능..
SpringSecurity dependency org.springframework.boot spring-boot-starter-security 기본적인 login, logout은 spring security에서 제공해준다. default value username: user password: WAS 띄울 때 콘솔에 출력된다. (application 띄울 때마다 바뀜) 로그엔 보안 관련 정보가 남으면 안 된다. configuration @Configuration, @EnableWebSecurity 어노테이션을 사용하고, WebSecurityConfigurerAdapter를 상속한다. @Configuration @EnableWebSecurity public class SpringConfig extends WebSecurityConfi..
자바 | 백준 | 21609 | 상어 중학교 Solution import java.io.*; import java.util.*; public class Main { static int N, M; static int[][] map; static boolean[][] visited; static int[] dx = { -1, 1, 0, 0 }; static int[] dy = { 0, 0, -1, 1 }; static List blockGroup, biggestBlockGroup; public static void main(String[] args) throws IOException { // TODO Auto-generated method stub BufferedReader br = new BufferedReader(new InputStreamRead..
자바 | 백준 | 21611 | 마법사 상어와 블리자드 Solution import java.io.*; import java.util.*; public class Main { static int N, M; static int[][] map; static int[][] index; static int[] dx = { 0, -1, 1, 0, 0 }; static int[] dy = { 0, 0, 0, -1, 1 }; // 북, 남, 서, 동 static int[] dx2 = { 0, 1, 0, -1 }; static int[] dy2 = { 1, 0, -1, 0 }; static int[] d; static int[] s; static int[] bombs = new int[4]; static Coor[] coors; public static void main(..
자바 | 백준 | 20056 | 마법사 상어와 파이어볼 Solution import java.io.*; import java.util.*; public class Main { static int N, M, K; static int[] dx = { -1, -1, 0, 1, 1, 1, 0, -1 }; static int[] dy = { 0, 1, 1, 1, 0, -1, -1, -1 }; static List list; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine(), " ");..
자바 | 백준 | 21608 | 상어 초등학교 Solution import java.io.*; import java.util.*; public class Main { static int N; static int[][] map; static int[] order; static int[][] seats; static int[] dx = { -1, 1, 0, 0 }; static int[] dy = { 0, 0, -1, 1 }; static int likeCnt, emptyCnt, R, C; public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); N = Integer.par..
자바 | 백준 | 12761 | 돌다리 package BOJ; import java.io.*; import java.util.*; public class BOJ_12761_돌다리 { static int A, B, N, M; public static void main(String[] args) throws IOException { // TODO Auto-generated method stub BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(br.readLine(), " "); A = Integer.parseInt(st.nextToken()); B = Integer.parseInt(st.ne..
자바 | 백준 | 17837 | 새로운 게임2 | subList Solution package BOJ; import java.io.*; import java.util.*; public class BOJ_17837_새로운게임2 { static int N, K; static int[][] map; static List list; static int[][] info; static int[] dx = { 0, 0, 0, -1, 1 }; static int[] dy = { 0, 1, -1, 0, 0 }; public static void main(String[] args) throws IOException { // TODO Auto-generated method stub BufferedReader br = new BufferedReader(new InputStreamReade..