본문 바로가기

Web Programming/springboot8

[Spring Boot] War - wildfly에 배포하기(Gradle + Spring boot) Spring boot에서 embeded tomcat 설정으로 문제없이 작업하다가 실제 운영환경인 REDHAT JBoss 환경으로 실행 테스트를 해보고자 했습니다. 동일 환경의 오픈소스인 Wildfly 버전으로 환경을 구성했습니다. 개발환경 IDE: IntelliJ Wildfly 26 - Jakarta EE 8 Full & Web Distribution Java 11 Spring boot 2.7.x Windows 10 WildFly 환경 셋업 wildfly 홈페이지에서 Wildfly 26 - Jakarta EE 8 Full & Web Distribution을 다운받고 실행했습니다. 다운로드 받은 zip파일 압축을 풉니다. Wildfly 버전 호환 문제 최신의 28.0.0.1Final에 Wildfly dis.. 2023. 7. 10.
Gradle에서 JavaDoc생성시 한글깨짐 문제 Gradle에서 JavaDoc 을 실행하여 Springboot 프로젝트를 문서화하는 과정에서 아래의 오류 발생 .. 생략 .. C:\Dev\restapi\src\main\java\com\example\restapi\dto\requestDTO.java:51: error: unmappable character (0xEC) for encoding x-windows-949 @ApiModelProperty(notes = "?쟾?넀?슏?닔", example = "0", dataType = "number") 100 errors > Task :javadoc FAILED FAILURE: Build failed with an exception. 해결과정 1. 한글을 포함한 Java 코드를 EUC-KR로 변경 후 JavaD.. 2023. 3. 17.
Springboot 콘솔 배너 변경하기 ( 배너 생성 사이트 소개 ) Springboot 콘솔 배너 변경 Springboot Application 기동 시 아래와 같은 배너(banner)가 콘솔에 출력되는데, 이를 변경하는 방법을 알아보자. . ____ _ __ _ _ /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ ( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ \\/ ___)| |_)| | | | | || (_| | ) ) ) ) ' |____| .__|_| |_|_| |_\__, | / / / / =========|_|==============|___/=/_/_/_/ :: Spring Boot :: (v2.7.2) Default banner는 banner.txt파일이 존재 시 해당 파일을 Default banner로 사.. 2022. 7. 25.
문제해결: Caused by: java.lang.IllegalArgumentException: error at ::0 formal unbound in pointcut AOP 처리 중 아래와 같은 오류 발생 Caused by: java.lang.IllegalArgumentException: error at ::0 formal unbound in pointcut at org.aspectj.weaver.tools.PointcutParser.parsePointcutExpression(PointcutParser.java:319) at org.springframework.aop.aspectj.AspectJExpressionPointcut.buildPointcutExpression(AspectJExpressionPointcut.java:227) at org.springframework.aop.aspectj.AspectJExpressionPointcut.obtainPointcutE.. 2022. 7. 5.