1. 이클립스 버전에 맞는 sts 다운받기 ->c:\ 에 압축 풀기
http://spring.io/tools
*Eclipse에서 Spring 패키지를 받는 방법이 있으나 시간이 매우 오래 걸림.
2. 프로젝트 만들기 (Spring project -> Spring MVC Project)
3. Maven pom.xml에서 Spring 버전 바꾸기(알아서 library 업데이트 함)
<org.springframework-version>3.1.1.RELEASE</org.springframework-version> -->
<org.springframework-version>3.2.10.RELEASE</org.springframework-version>
그리고 다음의 defendency 추가(webmvc만 test로 변경하여 추가)
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${org.springframework-version}</version>
</dependency>
4. preference -> server- runtime environment의 tomcat 추가
5. root-context.xml의 namespace에서 aop, context 체크
* junit test case의 클래스에 다음과 같이 추가하면 서버를 올리지 않고 테스트가 가능.
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = {"file:src/main/**/*-context.xml"})
* was 안 띄우고 테스트 하기
package org.ph.web;
import static org.junit.Assert.*;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.test.web.servlet.MockMvc;
import org.springframework.test.web.servlet.MvcResult;
import org.springframework.test.web.servlet.RequestBuilder;
import org.springframework.test.web.servlet.setup.MockMvcBuilders;
import org.springframework.web.context.WebApplicationContext;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.*;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.*;
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration(locations = { "file:src/main/**/*-context.xml" })
public class MemberControllerTest {
@Autowired
private WebApplicationContext wac;
private MockMvc mockMvc;
private static Logger logger = LoggerFactory.getLogger("MemberControllerTest");
@Before
public void setup() {
this.mockMvc = MockMvcBuilders.webAppContextSetup(this.wac).build();
}
@Test
public void test() throws Exception{
logger.info(this.mockMvc.toString());
// mockMvc.perform(get("/member/doA"));
// MvcResult result = mockMvc.perform(get("/member/doA")).andExpect(status().isOk()).andReturn();
MvcResult result = mockMvc.perform(get("/member/doA"))
.andExpect(status().isOk()).andReturn();
logger.info(result.getModelAndView().getViewName());
}
}
* 가끔 Spring 사용할 때 Maven 세팅 시 에러가 날 수 있음.
jar 파일을 받다가 문제가 생기는 경우인데 그럴 때는 user의 .m2 의 repository 폴더로 가서 모든 내용을 지우고 프로그램을 종료한 후 다시 실행하면 해결되는 경우가 있음.
*@Controller => 컨트롤러
@Service => 서비스
@Repository => DAO
@Configuration => XML 대신 자바설정
@Component => 유틸
'코딩 > WEB' 카테고리의 다른 글
Spring - Cookie Filter 예제 (0) | 2014.10.17 |
---|---|
Spring 설정 -- 3 AOP 설정 (0) | 2014.10.15 |
Spring 설정 -- 2 Mybatis 연동하기 (0) | 2014.10.14 |
MyBatis DynamicSQL Select 문 예제(XML) (0) | 2014.10.14 |
WEB: MyBatis 설정 및 사용 (0) | 2014.10.08 |