본문 바로가기
Spring

[Spring] Spring Legacy Project 환경설정

by 별토끼. 2017. 7. 27.
반응형

[Spring] Spring Legacy Project 환경설정



1.

convert없이 바로 mvn프로젝트 만들기




-context경로 설정

-project 에서 run As - run on server 

2.

폴더 경로 보기




3. JavaSE-1.6 으로 설정된 JRE System Library 바꾸기

-현재 사용하는 것이 java 8.0이므로  바꿔줘야한다.




-pom.xml


- 프로젝트 - properties -  java Compiler


- project Facets 에서 설정을 3.1, 1.8로 바꿔줌


-프로젝트에서 마우스 우클릭 후 Maven - updateProject


4. 서버 Run하기




  • 프로젝트 시작시 기본 설정

1.

web.xml




2.

homeController


cf > 기본으로 설정되어 있는  beans의 prefix/suffix



3.

views - home.jsp 지우고

EE환경으로 바꾼 뒤 home.jsp만듬



4.

-ServletContext에 해당 문자열 복사 붙여넣기

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
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:c="http://www.springframework.org/schema/c"
    xmlns:context="http://www.springframework.org/schema/context"
    xmlns:mvc="http://www.springframework.org/schema/mvc"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd
        http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd
        http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd">
    
    <context:component-scan base-package="com.gura.step03"/>    
    
    
    <!-- View Page 설정 -->
    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
        <property name="prefix" value="/WEB-INF/views/"/>
        <property name="suffix" value=".jsp"/>
    </bean>
 
</beans>
cs


반응형

'Spring' 카테고리의 다른 글

[Spring] JSON데이터 응답받기  (0) 2017.07.27
[Spring] Abstract VIew  (0) 2017.07.27
[Spring] MyBatis 이용하기 3  (0) 2017.07.27
[Spring] MyBatis 연결하기 2  (0) 2017.07.26
[Spring] MyBatis 연결하기 1  (2) 2017.07.26

댓글