멀티태넌스 동작 확인

This commit is contained in:
Rinjae
2025-09-12 14:46:15 +09:00
parent ff99e7caad
commit 7d41f18429
5 changed files with 35 additions and 20 deletions
+9 -10
View File
@@ -47,20 +47,19 @@ compileJava {
}
war {
def profile = project.findProperty("profile") ?: "weblogic"
if (profile == "weblogic") {
webXml = file("WebContent/WEB-INF/weblogic-web.xml")
} else {
webXml = file("WebContent/WEB-INF/web.xml")
}
def profile = project.findProperty("profile") ?: "tomcat"
if (profile == "weblogic") {
webXml = file("WebContent/WEB-INF/weblogic-web.xml")
}
// rootSpec.exclude '**/persistence.xml'
exclude '**/context.xml'
archiveFileName = "eapim-admin.war"
archiveFileName = "eapim-admin.war"
}
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}