일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 앱 어플리케이션
- 공용창고
- 플러그인
- 닉네임변환
- CrashReports
- 사회초년생
- NativeScript
- 마크플러그인
- 자동트윗봇
- app-release
- 마크서버
- 러시안룰렛게임
- 마크에러
- 마인크래프트
- 마인크래프트서버설치
- GoogleCloudPlatfor
- 면접을위한CS전공지식노트
- 마인크래프트모딩
- 마인크래프트스크립트
- 마크여성서버
- 구글 애널리틱스 api
- Google Analytics api
- 스크립트
- 여성서버
- 마인크래프트서버
- 청년
- Vue.js
- 마크모딩
- TickingENtities
- 1.14.4
- Today
- Total
일상일지
EgovFrameWork 3.8에 JBoss 7.2 돌아가게 하기 본문
순서대로 따라합시다.
0. 서버 생성
마켓플레이스에서 JBoss Tools 인스톨.
Window/Preferences > Server > Runtime Environment에서 Add
Red Hat JBoss Middleware 에서 Red Hat JBoss Enterprise ~~~ 7.1 Runtime 선택(7.2가 없어서 대체 선택함) 후 apply
New Server 후 Red Hat JBoss Enterprise Application Platform 7.1 선택 (7.2가 없어서 대체 선택함)
The selected profile requires a runtime 에서 아까 생성해준 7.2 Runtime 선택
프로젝트 설정 후 Finish
1. 파일 수정
jboss-eap-7.2\standalone\deployments\000.war\WEB-INF\lib 로 이동
spring-modules-validation-0.9.jar 압축 풀기
파일 안의 META-INF/valang.tld 파일 수정하기
<body-content>None</body-content> => <body-content>empty</body-content>
파일 저장 후, 원래대로 .jar 파일로 압축해놓기.
2. Path 설정
이클립스의 web application 폴더 구조를 보면 WEB-INF 폴더가 있음.
WEB-INF 안에 jboss-web.xml 이라는 파일 생성.
다음과 같이 넣어주기
<?xml version="1.0" encoding="UTF-8"?>
<!-- JBoss, Home of Professional Open Source Copyright 2012, Red Hat, Inc.
and/or its affiliates, and individual contributors by the @authors tag. See
the copyright.txt in the distribution for a full listing of individual contributors.
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
by applicable law or agreed to in writing, software distributed under the
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
OF ANY KIND, either express or implied. See the License for the specific
language governing permissions and limitations under the License. -->
<!-- Configure usage of the security domain "other" -->
<jboss-web>
<context-root>/</context-root>
</jboss-web>
3. 필요시에 따라 context-validator.xml 내부 전체 주석처리하기
저장 후 실행하면 잘 돌아간다.
'개발' 카테고리의 다른 글
[log4j2] 특정 sql 쿼리 로그 filter 사용하여 제외하기 (0) | 2021.01.21 |
---|---|
[JBoss EAP 7.2] 소스 내 properties 대신 서버 JAVA_OPTS 환경변수 사용하는 법 (0) | 2021.01.05 |
구글 애널리틱스 api chartjs 적용하기(실전예제) (6) | 2020.07.30 |
tr태그에 링크 달기 (0) | 2020.07.30 |
구글 애널리틱스 api(Google Analytics api, ga api) 연동해서 별도의 로그인 없이 그래프 만들기 (10) | 2020.07.18 |