일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 | 31 |
- SOUP
- java
- BS
- 정보처리기사
- 정처기
- 자바스크립트
- 정보처리기사필기
- Req
- 크롤링
- AWS
- sklearn
- regressor
- 웹앱
- lombok
- Intellij
- request
- 비전공자
- list
- 자바
- springboot
- pandas
- crawling
- dataframe
- 백준
- ensemble
- pds
- APPEND
- 머신러닝
- BeautifulSoup
- javascript
- Today
- Total
목록Intellij (3)
No sweet without sweat

GenericXMLApplicationContext - 최근에 스프링 부트를 많이 사용하면서 XML기반의 설정을 잘 안씀 - 아직 많은 레거시 프로젝트 들이 xml되어 있고, 또 xml을 사용하면 컴파일 없이 빈 설정 정보를 변경할 수 잇는 장점이 있음 XmlAppContext package hello.core.xml; import hello.core.member.MemberService; import org.assertj.core.api.Assertions; import org.junit.jupiter.api.Test; import org.springframework.context.ApplicationContext; import org.springframework.context.support.Gener..

1. build.gradle 에 의존성 추가 dependencies { compile('org.springframework.boot:spring-boot-starter-web') compile('org.projectlombok:lombok') testCompile('org.springframework.boot:spring-boot-starter-test') } 이처럼 lombok을 추가하시고 플로그인 설치해주세요. 그리고 Ctrl + Shift + A [MAC은 COmmand + SHIFT + A]를 통해 Plugins를 설치해주세요. 2-1 Plugins 검색 대표사진 삭제 사진 설명을 입력하세요. 2-2 롬벅설치 설치하시고 Seting -> build -> compiler -> Annotation P..

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 plugin : 'org.springframework.boot' apply plugin : 'io.spring.dependency-management' group 'org.example' version '1.0-SNAPSHOT' sourceCompatibi..