일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Inside Of Me
- SQL 처리
- 봄 사랑 벚꽃 말고
- nginx
- 천공의 시간
- 레이디스코드
- 오라클 아키텍처
- DBMS 구성요소
- 니가 참 좋아
- 기타
- 스위트라떼
- oracle
- 말 더듬
- 개발자
- 인덱스
- 오라클
- DBMS
- 아이유
- 러블리즈
- 신입
- IT
- 핑거스타일
- db
- index
- 6학년 8반 1분단
- 슬픔의 후에
- 악보
- I'm fine thank you
- 데이터베이스
- 장범준
취미로 음악을 하는 개발자
[Spring] 프로젝트 생성 본문
// Spring 프레임워크 특징 및 모듈
// Generic java vs Spring
일반 프로젝트 : 순수한 java 파일
Spring : Spring 모듈들을 이용하여 개발 진행
// resources/applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<bean id="tWalk" class="testPjt.TranspotationWalk"/>
</beans>
bean : 하나의 객체라고 생각하면 됨
<bean id="임의로 가능" class="패키지명.클래스명"/>
- 기존 자바 프로젝트와 Spring 모듈을 이용한 프로젝트는 어떻게 다른가?
// java/MainClass
import org.springframework.context.support.GenericXmlApplicationContext;
public class MainClass {
// 기존 자바만 사용했을 때와 Spring 모듈을 사용했을 때의 차이
public static void main(String[] args) {
/*
* TranspotationWalk transpotationWalk = new TranspotationWalk();
* transpotationWalk.move();
*/
// Spring Container에 먼저 접근 -> applicationContext.xml
// id가 tWalk, Datatype이 TranspotationWalk 클래스인 Bean(객체)를 가져온다.
GenericXmlApplicationContext ctx = new GenericXmlApplicationContext("classpath:applicationContext.xml");
TranspotationWalk transpotationWalk = ctx.getBean("tWalk", TranspotationWalk.class);
transpotationWalk.move();
ctx.close(); // 리소스를 사용하고나면 반환해준다.
}
}
자바처럼 new 객체를 만드는 것이 아니라 resources에 있는 Container 역할을 해주는 것을 이용하여 사용한다.
-> GenericXmlApplicationContext의 getBean() 메소드를 통해 사용
출력
5월 20, 2019 2:50:46 오후 org.springframework.beans.factory.xml.XmlBeanDefinitionReader loadBeanDefinitions
정보: Loading XML bean definitions from class path resource [applicationContext.xml]
5월 20, 2019 2:50:47 오후 org.springframework.context.support.GenericXmlApplicationContext prepareRefresh
정보: Refreshing org.springframework.context.support.GenericXmlApplicationContext@2dda6444: startup date [Mon May 20 14:50:47 KST 2019]; root of context hierarchy
도보로 이동 합니다.5월 20, 2019 2:50:47 오후 org.springframework.context.support.GenericXmlApplicationContext doClose
정보: Closing org.springframework.context.support.GenericXmlApplicationContext@2dda6444: startup date [Mon May 20 14:50:47 KST 2019]; root of context hierarchy
ㄴ 객체를 생성하는 로그들이 추가된 것일 뿐
- 또 다른 프로젝트 생성 방법
: 로컬에서 파일을 생성하고 eclipse에서 import하는 방법
1. 임의의 폴더에 src/main 폴더를 만들어주고 main 하위폴더로 java와 resources 폴더를 만들어준다.
2. src 폴더 안에 에디터를 사용하여 pom.xml 파일을 만들어주고 기존에 사용했던 pom.xml에서 복사 붙여넣기를 해준다.
3. eclipse에서 import 해준다. Maven > Existing Maven Projects > Root Directory는 만들었던 폴더 지정, 만든 후에는 아래와 같이 나올 것이다.
4. 이전과 같이 java와 resources 폴더에 필요한 파일들을 넣어주면 된다.
출처 : 위키백과
'공대인 > Spring[Boot]' 카테고리의 다른 글
[Spring] 생명주기 (Life Cycle) (0) | 2019.05.23 |
---|---|
[Spring] 의존 객체 자동 주입 (0) | 2019.05.22 |
[Spring] Spring 설정 파일 분리 (0) | 2019.05.21 |
[Spring] 의존 주입 (DI, Dependency injection) (0) | 2019.05.20 |
[Spring] 준비 및 프로젝트 생성 (0) | 2019.05.20 |