Notice
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- java
- REST API
- Spring Security
- 이펙티브자바 아이템60
- 이펙티브자바
- dreamcoding
- 백준
- BOJ
- JPA 연관관계 매핑
- 김영한 http
- 프로그래머스 SQL
- 이펙티브자바 아이템59
- js api
- http
- js promise
- Quick Sort
- JS 딥다이브
- 패스트캠퍼스 컴퓨터공학 완주반
- 드림코딩
- 가상 면접 사례로 배우는 대규모 시스템 설계 기초
- HTTP 완벽가이드
- 이펙티브자바 스터디
- js array
- HTTP 완벽 가이드
- 김영한 JPA
- 집 구하기
- 백기선 스터디
- 모던자바스크립트
- 킹수빈닷컴
- 프로그래머스
- Today
- 1
- Total
- 17,173
목록전체 글 (457)
kingsubin

- SpringApplication 을 실행시키는법 @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } } -> static 메소드 사용시 커스터마이징 불가능 @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication app = new SpringApplication(Application.class); app.run(); } } @SpringBootApplication pu..
Spring
2020. 7. 4. 19:35