일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- spring-framework
- Linux
- 스프링프레임워크
- maven
- 개발
- tomcat
- JAR
- soap
- War
- Jenkins
- git
- java
- Gradle
- 스프링부트
- mybatis
- Spring Boot
- gitlab
- springboot
- SpringFramework
- jsp
- 웹프로젝트
- REST
- Pipeline
- annotaion
- Spring Framework
- hashcode
- Web
- Spring
- oracle
- 이클립스
- Today
- Total
목록REST (2)
Verity's Daily Logs_

SOAP Web Service Client 로직 실행 시 요청에 대한 응답 원문을 확인하는 것이 개발이나 유지보수(이력 및 오류 처리) 에 필요할 것이다. 이에 Client 요청 시 요청과 응답에 대한 SOAP Body 데이터를 콘솔로 출력하는 기능까지 추가로 개발한다. 4. Logging 4-1. Dependency 추가 org.apache.cxf cxf-rt-features-logging 3.5.0 4-2. LoggingFeature 추가 package com.happy.webservice.cxf.config; import com.happy.cxf.ws.UserService; import org.apache.cxf.jaxws.JaxWsProxyFactoryBean; import org.springfr..

3. Client access service 3-1. wsdl 다운로드 http://localhost:8088/ws/user?wsdl 이전 글(Server side 생성)에서 만든 wsdl 주소로 접속해 해당 내용을 user.wsdl 이름으로 저장한다. 프로젝트 내 resources/wsdl 경로에 파일을 저장한다. (wsdl 폴더 생성 후 저장) 첫 줄에 아래 문구를 추가한다. (보통 추가되어 있음) 3-2. pom.xml - plugin 추가 org.apache.cxf cxf-codegen-plugin 3.5.0 generate-sources generate-sources ${project.build.directory}/generated-sources/cxf ${basedir}/src/main/res..