working weblogic

This commit is contained in:
Rinjae
2025-09-19 16:37:16 +09:00
parent 5025a26e7f
commit eadc09ef0a
2 changed files with 7 additions and 1 deletions
+6 -1
View File
@@ -46,7 +46,7 @@ dependencies {
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.data:spring-data-envers'
implementation 'org.springframework.boot:spring-boot-starter-web'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-security'
@@ -59,7 +59,12 @@ dependencies {
if (project.hasProperty("profile") && project.property("profile") == "weblogic") {
// WebLogic 배포 시에는 톰캣을 WAR에 넣지 않음
implementation('org.springframework.boot:spring-boot-starter-web') {
exclude group: 'org.springframework.boot', module: 'spring-boot-starter-tomcat'
}
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
} else {
implementation 'org.springframework.boot:spring-boot-starter-web'
}
// implementation 'io.springfox:springfox-boot-starter:3.0.0'
+1
View File
@@ -15,6 +15,7 @@
</prefer-application-packages>
</container-descriptor>
<session-descriptor>
<timeout-secs>1800</timeout-secs>
<cookie-name>JSESSIONID_ONL</cookie-name>