헤르메스 LIFE

[JBoss] JBoss 6 설치 본문

Server

[JBoss] JBoss 6 설치

헤르메스의날개 2012. 5. 7. 19:00
728x90

요구사항 
- JDK ( jdk 1.6.x ) 
- JBoss 6 ( jboss_6.0.0.Final.zip ) 

Eclipse-Jee-Indigo-SR2 3.7.x


1. JDK 1.6.0_32 다운로드



2. JDK 설치

3. JBoss 6.0.0 다운로드


4. JBOSS 설치

    다운로드 한 jboss zip 파일을 적당한 위치에 압축을 푼다.  (설치경로상에 공백등이 들어가면 오류를 발생시킬 수 있다고 하니 주의 할 것!!!)


5. %JBOSS_HOME%\bin\run.bat 실행 ( http://localhost:8080 )


6. Eclipse 다운로드

URL http://www.eclipse.org/downloads/



7. Eclipse 설치 ( 적당한 위치에 압축을 풉니다. )


8. Eclipse JBoss Plugin


설치가 다 되면 Eclipse를 Restart 합니다.


9. Eclipse 설정
Window > Preferences > server > Runtime Environment 선택


JBoss 6.x Runtime


default를 선택하고 Copy를 클릭합니다.

default_copy 로 설정하고 Finish 합니다.


Server runtime environments 환경이 구성되었습니다.


설정 후 default_copy server가 생성됩니다.


Eclipse Server 시작


Eclipse Log


10. Dynamic Web Project 생성


sample-web Project


Source Build Path 설정


Context root 설정


Resource Encoding


Java Build Path


11. JBoss Server에 sample-web project 추가


sample-web > Add and Remove...


12. Server 시작 (index.jsp)

<%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<html>
<head>
<title>Home</title>
</head>
<body>
<h1>
<P>Hello World!</P>  
</h1>
</body>
</html>


Hello World

13. Context Root 변경

WebContent/WEB-INF/jboss-web.xml 파일 생성

<?xml version="1.0" encoding="UTF-8"?>
<jboss-web>
<context-root></context-root>
</jboss-web>

ROOT.war 폴더명 변경 ( ROOT.war.bak )


http://localhost:8080











728x90