gitignore 적용
This commit is contained in:
parent
c59398486d
commit
e280383dfe
40
.classpath
40
.classpath
@ -1,40 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<classpath>
|
|
||||||
<classpathentry kind="src" output="target/classes" path="src/main/java">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="optional" value="true"/>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry excluding="**" kind="src" output="target/classes" path="src/main/resources">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="test" value="true"/>
|
|
||||||
<attribute name="optional" value="true"/>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry excluding="**" kind="src" output="target/test-classes" path="src/test/resources">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="test" value="true"/>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry exported="true" kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
<attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="maven.pomderived" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="lib" path="src/main/webapp/WEB-INF/classes"/>
|
|
||||||
<classpathentry kind="output" path="target/classes"/>
|
|
||||||
</classpath>
|
|
||||||
200
.gitignore
vendored
Normal file
200
.gitignore
vendored
Normal file
@ -0,0 +1,200 @@
|
|||||||
|
HELP.md
|
||||||
|
target/
|
||||||
|
!.mvn/wrapper/maven-wrapper.jar
|
||||||
|
!**/src/main/**/target/
|
||||||
|
!**/src/test/**/target/
|
||||||
|
|
||||||
|
### STS ###
|
||||||
|
.apt_generated
|
||||||
|
.classpath
|
||||||
|
.factorypath
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.springBeans
|
||||||
|
.sts4-cache
|
||||||
|
|
||||||
|
### IntelliJ IDEA ###
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
|
||||||
|
### NetBeans ###
|
||||||
|
/nbproject/private/
|
||||||
|
/nbbuild/
|
||||||
|
/dist/
|
||||||
|
/nbdist/
|
||||||
|
/.nb-gradle/
|
||||||
|
build/
|
||||||
|
!**/src/main/**/build/
|
||||||
|
!**/src/test/**/build/
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
|
||||||
|
### Eclipse ###
|
||||||
|
|
||||||
|
.metadata
|
||||||
|
bin/
|
||||||
|
deploy/
|
||||||
|
tmp/
|
||||||
|
|
||||||
|
*.tmp
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*~.nib
|
||||||
|
local.properties
|
||||||
|
.settings
|
||||||
|
.loadpath
|
||||||
|
.recommenders
|
||||||
|
|
||||||
|
# External tool builders
|
||||||
|
.externalToolBuilders/
|
||||||
|
|
||||||
|
# Locally stored "Eclipse launch configurations"
|
||||||
|
*.launch
|
||||||
|
|
||||||
|
# PyDev specific (Python IDE for Eclipse)
|
||||||
|
*.pydevproject
|
||||||
|
|
||||||
|
# CDT-specific (C/C++ Development Tooling)
|
||||||
|
.cproject
|
||||||
|
|
||||||
|
# Java annotation processor (APT)
|
||||||
|
.factorypath
|
||||||
|
|
||||||
|
# PDT-specific (PHP Development Tools)
|
||||||
|
.buildpath
|
||||||
|
|
||||||
|
# sbteclipse plugin
|
||||||
|
.target
|
||||||
|
|
||||||
|
# Tern plugin
|
||||||
|
.tern-project
|
||||||
|
|
||||||
|
# TeXlipse plugin
|
||||||
|
.texlipse
|
||||||
|
|
||||||
|
# STS (Spring Tool Suite)
|
||||||
|
.springBeans
|
||||||
|
|
||||||
|
# Code Recommenders
|
||||||
|
.recommenders/
|
||||||
|
|
||||||
|
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||||
|
.cache-main
|
||||||
|
.scala_dependencies
|
||||||
|
.worksheet
|
||||||
|
|
||||||
|
### Eclipse Patch ###
|
||||||
|
# Eclipse Core
|
||||||
|
*.project
|
||||||
|
|
||||||
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
|
*.classpath
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/eclipse
|
||||||
|
|
||||||
|
# Maven
|
||||||
|
target/
|
||||||
|
pom.xml.tag
|
||||||
|
pom.xml.releaseBackup
|
||||||
|
pom.xml.versionsBackup
|
||||||
|
pom.xml.next
|
||||||
|
release.properties
|
||||||
|
dependency-reduced-pom.xml
|
||||||
|
buildNumber.properties
|
||||||
|
.mvn/timing.properties
|
||||||
|
.mvn
|
||||||
|
|
||||||
|
### Intellij ###
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
|
# User-specific stuff:
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/compiler.xml
|
||||||
|
.idea/**/encodings.xml
|
||||||
|
.idea/**/jarRepositories.xml
|
||||||
|
.idea/**/misc.xml
|
||||||
|
.idea/**/vcs.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/dictionaries
|
||||||
|
|
||||||
|
# Sensitive or high-churn files:
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.xml
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
|
||||||
|
# Gradle:
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-debug/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin:
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
## File-based project format:
|
||||||
|
*.iws
|
||||||
|
/.idea/
|
||||||
|
.idea
|
||||||
|
*.iws
|
||||||
|
*.iml
|
||||||
|
*.ipr
|
||||||
|
compiler.xml
|
||||||
|
|
||||||
|
## Plugin-specific files:
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
/out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# Ruby plugin and RubyMine
|
||||||
|
/.rakeTasks
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
### Intellij Patch ###
|
||||||
|
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
|
||||||
|
|
||||||
|
# modules.xml
|
||||||
|
# .idea/misc.xml
|
||||||
|
# *.ipr
|
||||||
|
|
||||||
|
# Sonarlint plugin
|
||||||
|
.idea/sonarlint
|
||||||
|
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/intellij
|
||||||
|
# /src/main/resources/db.properties
|
||||||
|
# /src/main/resources/ako.properties
|
||||||
|
# /src/main/resources/ako.properties
|
||||||
|
# /src/main/resources/db.properties
|
||||||
|
|
||||||
|
|
||||||
|
### VS Code ###
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# jrebel
|
||||||
|
rebel.xml
|
||||||
|
/mvnw
|
||||||
|
/mvnw.cmd
|
||||||
54
.project
54
.project
@ -1,54 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<projectDescription>
|
|
||||||
<name>mjon</name>
|
|
||||||
<comment></comment>
|
|
||||||
<projects>
|
|
||||||
</projects>
|
|
||||||
<buildSpec>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.wst.common.project.facet.core.builder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.wst.validation.validationbuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.springframework.ide.eclipse.core.springbuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.springframework.ide.eclipse.boot.validation.springbootbuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.eclipse.m2e.core.maven2Builder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
<buildCommand>
|
|
||||||
<name>org.zeroturnaround.eclipse.rebelXmlBuilder</name>
|
|
||||||
<arguments>
|
|
||||||
</arguments>
|
|
||||||
</buildCommand>
|
|
||||||
</buildSpec>
|
|
||||||
<natures>
|
|
||||||
<nature>org.springframework.ide.eclipse.core.springnature</nature>
|
|
||||||
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
|
|
||||||
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
|
|
||||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
|
||||||
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
|
||||||
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
|
|
||||||
<nature>org.eclipse.wst.jsdt.core.jsNature</nature>
|
|
||||||
<nature>org.zeroturnaround.eclipse.jrebelNature</nature>
|
|
||||||
</natures>
|
|
||||||
</projectDescription>
|
|
||||||
@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<classpath>
|
|
||||||
<classpathentry excluding="**/bower_components/*|**/node_modules/*|**/*.min.js" kind="src" path="src/main/webapp"/>
|
|
||||||
<classpathentry kind="src" path="target/m2e-wtp/web-resources"/>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.JRE_CONTAINER"/>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.WebProject">
|
|
||||||
<attributes>
|
|
||||||
<attribute name="hide" value="true"/>
|
|
||||||
</attributes>
|
|
||||||
</classpathentry>
|
|
||||||
<classpathentry kind="con" path="org.eclipse.wst.jsdt.launching.baseBrowserLibrary"/>
|
|
||||||
<classpathentry kind="output" path=""/>
|
|
||||||
</classpath>
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
encoding//src/main/java=UTF-8
|
|
||||||
encoding//src/main/resources=UTF-8
|
|
||||||
encoding//src/test/java=UTF-8
|
|
||||||
encoding//src/test/resources=UTF-8
|
|
||||||
encoding/<project>=UTF-8
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
eclipse.preferences.version=1
|
|
||||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
|
||||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
|
||||||
org.eclipse.jdt.core.compiler.compliance=1.8
|
|
||||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
|
||||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
|
||||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
|
||||||
org.eclipse.jdt.core.compiler.release=disabled
|
|
||||||
org.eclipse.jdt.core.compiler.source=1.8
|
|
||||||
@ -1,4 +0,0 @@
|
|||||||
activeProfiles=
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
resolveWorkspaceProjects=true
|
|
||||||
version=1
|
|
||||||
@ -1,10 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
|
|
||||||
<wb-module deploy-name="mjon">
|
|
||||||
<wb-resource deploy-path="/" source-path="/target/m2e-wtp/web-resources"/>
|
|
||||||
<wb-resource deploy-path="/" source-path="/src/main/webapp" tag="defaultRootSource"/>
|
|
||||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/java"/>
|
|
||||||
<wb-resource deploy-path="/WEB-INF/classes" source-path="/src/main/resources"/>
|
|
||||||
<property name="context-root" value="mjon"/>
|
|
||||||
<property name="java-output-path" value="/mjon/target/classes"/>
|
|
||||||
</wb-module>
|
|
||||||
</project-modules>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<faceted-project>
|
|
||||||
<fixed facet="wst.jsdt.web"/>
|
|
||||||
<installed facet="java" version="1.8"/>
|
|
||||||
<installed facet="jst.web" version="2.5"/>
|
|
||||||
<installed facet="wst.jsdt.web" version="1.0"/>
|
|
||||||
</faceted-project>
|
|
||||||
@ -1 +0,0 @@
|
|||||||
org.eclipse.wst.jsdt.launching.baseBrowserLibrary
|
|
||||||
@ -1 +0,0 @@
|
|||||||
Window
|
|
||||||
@ -1,2 +0,0 @@
|
|||||||
disabled=06target
|
|
||||||
eclipse.preferences.version=1
|
|
||||||
@ -1,26 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
This is the JRebel configuration file. It maps the running application to your IDE workspace, enabling JRebel reloading for this project.
|
|
||||||
Refer to https://manuals.jrebel.com/jrebel/standalone/config.html for more information.
|
|
||||||
-->
|
|
||||||
<application generated-by="eclipse" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.zeroturnaround.com" xsi:schemaLocation="http://www.zeroturnaround.com http://update.zeroturnaround.com/jrebel/rebel-2_1.xsd">
|
|
||||||
|
|
||||||
<classpath>
|
|
||||||
<dir name="D:/Development/eGovFrameDev-3.9.0-64bit/workspace/mjon/target/classes">
|
|
||||||
</dir>
|
|
||||||
</classpath>
|
|
||||||
|
|
||||||
<web>
|
|
||||||
<link target="/">
|
|
||||||
<dir name="D:/Development/eGovFrameDev-3.9.0-64bit/workspace/mjon/target/m2e-wtp/web-resources">
|
|
||||||
<exclude name="/"/>
|
|
||||||
</dir>
|
|
||||||
</link>
|
|
||||||
<link target="/">
|
|
||||||
<dir name="D:/Development/eGovFrameDev-3.9.0-64bit/workspace/mjon/src/main/webapp">
|
|
||||||
</dir>
|
|
||||||
</link>
|
|
||||||
</web>
|
|
||||||
|
|
||||||
</application>
|
|
||||||
@ -1,14 +0,0 @@
|
|||||||
# CKEditor Image File Upload
|
|
||||||
|
|
||||||
#optional
|
|
||||||
ck.image.type.allow=jpg,jpeg,gif,bmp,png
|
|
||||||
#optional
|
|
||||||
#ck.image.save.class=Implementation of itn.com.utl.wed.filter.FileSaveManager
|
|
||||||
|
|
||||||
# if you use "separate image server" or other case. (apache, cdn, nas...)
|
|
||||||
#ck.image.dir=/www/images.mydomain.com/upload
|
|
||||||
#ck.image.url=http://images.mydomain.com/upload/
|
|
||||||
|
|
||||||
# if you use "web application"'s deployed directory.
|
|
||||||
ck.image.dir=/webApplicationDeployDirectory/upload
|
|
||||||
ck.image.url=/contextRoot/upload/
|
|
||||||
@ -1,100 +0,0 @@
|
|||||||
#-----------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# globals.properties : \uc2dc\uc2a4\ud15c
|
|
||||||
#
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4.
|
|
||||||
# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5
|
|
||||||
# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5
|
|
||||||
# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9)
|
|
||||||
# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428)
|
|
||||||
# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/'
|
|
||||||
# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9
|
|
||||||
# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX)
|
|
||||||
Globals.OsType = WINDOWS
|
|
||||||
|
|
||||||
# G4C \uc5f0\uacb0\uc6a9 IP (localhost)
|
|
||||||
Globals.LocalIp = 127.0.0.1
|
|
||||||
|
|
||||||
# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428
|
|
||||||
Globals.DbType = mysql
|
|
||||||
|
|
||||||
|
|
||||||
Globals.Env = dev
|
|
||||||
#Globals.Env = prod
|
|
||||||
|
|
||||||
|
|
||||||
#mysql
|
|
||||||
Globals.mysql.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
Globals.mysql.Url=jdbc:mysql://219.240.88.15:3306/mjon
|
|
||||||
Globals.mysql.UserName= mjonUr
|
|
||||||
Globals.mysql.Password= mjon!@#$2
|
|
||||||
|
|
||||||
# mysql-prod
|
|
||||||
Globals.DriverClassName.Prod=com.mysql.jdbc.Driver
|
|
||||||
Globals.Url.Prod=jdbc:mysql://219.240.88.15:3306/mjon1
|
|
||||||
Globals.UserName.Prod= mjonUr1
|
|
||||||
Globals.Password.Prod= mjon!@#$1
|
|
||||||
|
|
||||||
# mysql-dev
|
|
||||||
Globals.DriverClassName.Dev=com.mysql.jdbc.Driver
|
|
||||||
Globals.Url.Dev=jdbc:mysql://219.240.88.15:3306/mjon
|
|
||||||
Globals.UserName.Dev= mjonUr
|
|
||||||
Globals.Password.Dev= mjon!@#$
|
|
||||||
|
|
||||||
|
|
||||||
# mysql
|
|
||||||
Globals.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
Globals.Url=jdbc:mysql://219.240.88.15:3306/mjon
|
|
||||||
Globals.UserName= mjonUr
|
|
||||||
Globals.Password= mjon!@#$
|
|
||||||
|
|
||||||
# MainPage Setting(admin)
|
|
||||||
Globals.MainPage = /cmm/main/mainPage.do
|
|
||||||
#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58
|
|
||||||
#Globals.ckeditorUploadDir=/home/file/ckeditor/
|
|
||||||
Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/
|
|
||||||
#TEST SERVER
|
|
||||||
Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/
|
|
||||||
Globals.Solr.url=http://localhost:8983/solr
|
|
||||||
|
|
||||||
#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/
|
|
||||||
Globals.file.saveDir=/usr/local/tomcat
|
|
||||||
|
|
||||||
|
|
||||||
#SNS \ub85c\uadf8\uc778 KEY \uac12
|
|
||||||
#ITN \ub124\uc774\ubc84
|
|
||||||
Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J
|
|
||||||
Globals.itn.naver.clientSecret=kwiEmpkLg5
|
|
||||||
Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do
|
|
||||||
#ITN \uce74\uce74\uc624
|
|
||||||
Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44
|
|
||||||
Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do
|
|
||||||
|
|
||||||
#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574
|
|
||||||
Globals.homepage.siteId=mjon
|
|
||||||
Globals.homepage.siteNm=\ubb38\uc790ON
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Globals.fax.xpedite.id=kr/itn0202
|
|
||||||
Globals.fax.xpedite.pw=easytour7!
|
|
||||||
Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert
|
|
||||||
Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,htm,html,jpg,jpeg,gif,bmp,gul
|
|
||||||
|
|
||||||
|
|
||||||
#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815
|
|
||||||
#CARD
|
|
||||||
Globals.pay.kgm.card.cnSvcid=191017078687
|
|
||||||
Globals.pay.kgm.card.payMode=10
|
|
||||||
#BANK
|
|
||||||
Globals.pay.kgm.bank.raSvcid=230510133362
|
|
||||||
Globals.pay.kgm.bank.payMode=00
|
|
||||||
#MOBILE
|
|
||||||
Globals.pay.kgm.mobile.mcSvcid=170622040674
|
|
||||||
Globals.pay.kgm.mobile.payMode=00
|
|
||||||
@ -1,117 +0,0 @@
|
|||||||
#-----------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# globals.properties : \uc2dc\uc2a4\ud15c
|
|
||||||
#
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4.
|
|
||||||
# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5
|
|
||||||
# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5
|
|
||||||
# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9)
|
|
||||||
# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428)
|
|
||||||
# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/'
|
|
||||||
# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9
|
|
||||||
# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX)
|
|
||||||
Globals.OsType = WINDOWS
|
|
||||||
|
|
||||||
# G4C \uc5f0\uacb0\uc6a9 IP (localhost)
|
|
||||||
Globals.LocalIp = 127.0.0.1
|
|
||||||
|
|
||||||
# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428
|
|
||||||
Globals.DbType = mysql
|
|
||||||
|
|
||||||
|
|
||||||
Globals.Env = dev
|
|
||||||
|
|
||||||
|
|
||||||
# mysql
|
|
||||||
Globals.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon
|
|
||||||
Globals.UserName= mjonUr
|
|
||||||
#Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon_20230221
|
|
||||||
#Globals.UserName= mjonUr_20230221
|
|
||||||
Globals.Password= mjon!@#$
|
|
||||||
|
|
||||||
# mysql-prod
|
|
||||||
#Globals.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
#Globals.Url=jdbc:mysql://139.150.72.157:3306/mjon
|
|
||||||
#Globals.UserName= mjonUr
|
|
||||||
#Globals.Password= mjon!@#$
|
|
||||||
|
|
||||||
# MainPage Setting(admin)
|
|
||||||
Globals.MainPage = /cmm/main/mainPage.do
|
|
||||||
#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58
|
|
||||||
#Globals.ckeditorUploadDir=/home/file/ckeditor/
|
|
||||||
Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/
|
|
||||||
#TEST SERVER
|
|
||||||
Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/
|
|
||||||
Globals.Solr.url=http://localhost:8983/solr
|
|
||||||
|
|
||||||
#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/
|
|
||||||
Globals.file.saveDir=/usr/local/tomcat/
|
|
||||||
|
|
||||||
#whois openApi \uc544\uc774\ud53c \uccb4\ud06c
|
|
||||||
whois.api.key = 8nrytiochRBf3uEZ8GuIaTWdSTZP6Gw+9x9PIhAOjOt6+9fhyvOrpgVmlThdNL2kz1Eh/6jLVv7O+YnwE4bs7g==
|
|
||||||
whois.api.url = http://apis.data.go.kr/B551505/whois/ipas_country_code
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#SNS \ub85c\uadf8\uc778 KEY \uac12
|
|
||||||
#ITN \ub124\uc774\ubc84
|
|
||||||
Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J
|
|
||||||
Globals.itn.naver.clientSecret=kwiEmpkLg5
|
|
||||||
Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do
|
|
||||||
#ITN \uce74\uce74\uc624
|
|
||||||
Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44
|
|
||||||
Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do
|
|
||||||
|
|
||||||
#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574
|
|
||||||
Globals.homepage.siteId=mjon
|
|
||||||
Globals.homepage.siteNm=\ubb38\uc790ON
|
|
||||||
|
|
||||||
#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ub098\uc774\uc2a4\ud398\uc774 ID
|
|
||||||
Globals.Nicepay.Id = itn180208
|
|
||||||
#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ud68c\uc0ac \uc0ac\uc5c5\uc790\ubc88\ud638
|
|
||||||
Globals.Business.number = 6538700858
|
|
||||||
|
|
||||||
|
|
||||||
#itn \ucc44\uc6a9\uacf5\uace0\ub97c \uc704\ud55c \uc124\uc815
|
|
||||||
|
|
||||||
#\ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c
|
|
||||||
Globals.itn.file.saveDir=D:/fileTesttset/
|
|
||||||
#\uba54\uc77c \ucc44\uc6a9 \ud15c\ud50c\ub9bf URL
|
|
||||||
Globals.itn.recruit.template.url=http://localhost:8080/publish/email_form_itn_recruit.html
|
|
||||||
#\uba54\uc77c \ubb38\uc758\ud558\uae30 \ud15c\ud50c\ub9bf URL
|
|
||||||
Globals.itn.contact.us.template.url=http://localhost:8080/publish/email_form_itn_contact_us.html
|
|
||||||
#\uba54\uc77c \uc218\uc2e0\uc790 \uc8fc\uc18c #TODO : \ucd94\ud6c4\uc5d0 \ubcc0\uacbd\ud574\uc57c\ud568
|
|
||||||
Globals.itn.mail.to.address=leehoyoung250@daum.net
|
|
||||||
|
|
||||||
|
|
||||||
#\ube44\uc988\ubfcc\ub9ac\uc624 \uc124\uc815
|
|
||||||
Globals.mjon.kakao.dir=/usr/local/tomcat/file/kakao
|
|
||||||
#\ubb38\uc790\uc628 \uce74\uce74\uc624 \uc11c\ube44\uc2a4 \uc815\ubcf4 (\uc804\uc1a1\uc0ac : \ube44\uc988\ubfcc\ub9ac\uc624)
|
|
||||||
Globals.mjon.biz.url=https://kapi.ppurio.com
|
|
||||||
Globals.mjon.biz.id=itn0202
|
|
||||||
Globals.mjon.biz.kakao.apiKey=dheBWCONP6J5
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Globals.fax.xpedite.id=kr/itn0202
|
|
||||||
Globals.fax.xpedite.pw=easytour7!
|
|
||||||
Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert
|
|
||||||
Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,jpg,jpeg,gif,bmp,gul
|
|
||||||
|
|
||||||
#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815
|
|
||||||
#CARD
|
|
||||||
Globals.pay.kgm.card.cnSvcid=191017078687
|
|
||||||
Globals.pay.kgm.card.payMode=10
|
|
||||||
#BANK
|
|
||||||
Globals.pay.kgm.bank.raSvcid=230510133362
|
|
||||||
Globals.pay.kgm.bank.payMode=00
|
|
||||||
#MOBILE
|
|
||||||
Globals.pay.kgm.mobile.mcSvcid=170622040674
|
|
||||||
Globals.pay.kgm.mobile.payMode=00
|
|
||||||
@ -1,117 +0,0 @@
|
|||||||
#-----------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# globals.properties : \uc2dc\uc2a4\ud15c
|
|
||||||
#
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4.
|
|
||||||
# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5
|
|
||||||
# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5
|
|
||||||
# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9)
|
|
||||||
# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428)
|
|
||||||
# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/'
|
|
||||||
# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9
|
|
||||||
# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX)
|
|
||||||
Globals.OsType = WINDOWS
|
|
||||||
|
|
||||||
# G4C \uc5f0\uacb0\uc6a9 IP (localhost)
|
|
||||||
Globals.LocalIp = 127.0.0.1
|
|
||||||
|
|
||||||
# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428
|
|
||||||
Globals.DbType = mysql
|
|
||||||
|
|
||||||
|
|
||||||
Globals.Env = local
|
|
||||||
|
|
||||||
|
|
||||||
# mysql
|
|
||||||
Globals.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon
|
|
||||||
Globals.UserName= mjonUr
|
|
||||||
#Globals.Url=jdbc:mysql://192.168.0.125:3306/mjon_20230221
|
|
||||||
#Globals.UserName= mjonUr_20230221
|
|
||||||
Globals.Password= mjon!@#$
|
|
||||||
|
|
||||||
# mysql-prod
|
|
||||||
#Globals.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
#Globals.Url=jdbc:mysql://139.150.72.157:3306/mjon
|
|
||||||
#Globals.UserName= mjonUr
|
|
||||||
#Globals.Password= mjon!@#$
|
|
||||||
|
|
||||||
# MainPage Setting(admin)
|
|
||||||
Globals.MainPage = /cmm/main/mainPage.do
|
|
||||||
#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58
|
|
||||||
#Globals.ckeditorUploadDir=/home/file/ckeditor/
|
|
||||||
Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/
|
|
||||||
#TEST SERVER
|
|
||||||
Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/
|
|
||||||
Globals.Solr.url=http://localhost:8983/solr
|
|
||||||
|
|
||||||
#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/
|
|
||||||
Globals.file.saveDir=/usr/local/tomcat/
|
|
||||||
|
|
||||||
#whois openApi \uc544\uc774\ud53c \uccb4\ud06c
|
|
||||||
whois.api.key = 8nrytiochRBf3uEZ8GuIaTWdSTZP6Gw+9x9PIhAOjOt6+9fhyvOrpgVmlThdNL2kz1Eh/6jLVv7O+YnwE4bs7g==
|
|
||||||
whois.api.url = http://apis.data.go.kr/B551505/whois/ipas_country_code
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#SNS \ub85c\uadf8\uc778 KEY \uac12
|
|
||||||
#ITN \ub124\uc774\ubc84
|
|
||||||
Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J
|
|
||||||
Globals.itn.naver.clientSecret=kwiEmpkLg5
|
|
||||||
Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do
|
|
||||||
#ITN \uce74\uce74\uc624
|
|
||||||
Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44
|
|
||||||
Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do
|
|
||||||
|
|
||||||
#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574
|
|
||||||
Globals.homepage.siteId=mjon
|
|
||||||
Globals.homepage.siteNm=\ubb38\uc790ON
|
|
||||||
|
|
||||||
#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ub098\uc774\uc2a4\ud398\uc774 ID
|
|
||||||
Globals.Nicepay.Id = itn180208
|
|
||||||
#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ud68c\uc0ac \uc0ac\uc5c5\uc790\ubc88\ud638
|
|
||||||
Globals.Business.number = 6538700858
|
|
||||||
|
|
||||||
|
|
||||||
#itn \ucc44\uc6a9\uacf5\uace0\ub97c \uc704\ud55c \uc124\uc815
|
|
||||||
|
|
||||||
#\ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c
|
|
||||||
Globals.itn.file.saveDir=D:/fileTesttset/
|
|
||||||
#\uba54\uc77c \ucc44\uc6a9 \ud15c\ud50c\ub9bf URL
|
|
||||||
Globals.itn.recruit.template.url=http://localhost:8080/publish/email_form_itn_recruit.html
|
|
||||||
#\uba54\uc77c \ubb38\uc758\ud558\uae30 \ud15c\ud50c\ub9bf URL
|
|
||||||
Globals.itn.contact.us.template.url=http://localhost:8080/publish/email_form_itn_contact_us.html
|
|
||||||
#\uba54\uc77c \uc218\uc2e0\uc790 \uc8fc\uc18c #TODO : \ucd94\ud6c4\uc5d0 \ubcc0\uacbd\ud574\uc57c\ud568
|
|
||||||
Globals.itn.mail.to.address=leehoyoung250@daum.net
|
|
||||||
|
|
||||||
|
|
||||||
#\ube44\uc988\ubfcc\ub9ac\uc624 \uc124\uc815
|
|
||||||
Globals.mjon.kakao.dir=/usr/local/tomcat/file/kakao
|
|
||||||
#\ubb38\uc790\uc628 \uce74\uce74\uc624 \uc11c\ube44\uc2a4 \uc815\ubcf4 (\uc804\uc1a1\uc0ac : \ube44\uc988\ubfcc\ub9ac\uc624)
|
|
||||||
Globals.mjon.biz.url=https://kapi.ppurio.com
|
|
||||||
Globals.mjon.biz.id=itn0202
|
|
||||||
Globals.mjon.biz.kakao.apiKey=dheBWCONP6J5
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Globals.fax.xpedite.id=kr/itn0202
|
|
||||||
Globals.fax.xpedite.pw=easytour7!
|
|
||||||
Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert
|
|
||||||
Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,jpg,jpeg,gif,bmp,gul
|
|
||||||
|
|
||||||
#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815
|
|
||||||
#CARD
|
|
||||||
Globals.pay.kgm.card.cnSvcid=191017078687
|
|
||||||
Globals.pay.kgm.card.payMode=10
|
|
||||||
#BANK
|
|
||||||
Globals.pay.kgm.bank.raSvcid=230510133362
|
|
||||||
Globals.pay.kgm.bank.payMode=00
|
|
||||||
#MOBILE
|
|
||||||
Globals.pay.kgm.mobile.mcSvcid=170622040674
|
|
||||||
Globals.pay.kgm.mobile.payMode=00
|
|
||||||
@ -1,105 +0,0 @@
|
|||||||
#-----------------------------------------------------------------------
|
|
||||||
#
|
|
||||||
# globals.properties : \uc2dc\uc2a4\ud15c
|
|
||||||
#
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
# 1. key = value \uad6c\uc870\uc785\ub2c8\ub2e4.
|
|
||||||
# 2. key\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \ud3ec\ud568\ubd88\uac00, value\uac12\uc740 \uacf5\ubc31\ubb38\uc790\ub97c \uac00\ub2a5
|
|
||||||
# 3. key\uac12\uc73c\ub85c \ud55c\uae00\uc744 \uc0ac\uc6a9\ubd88\uac00, value\uac12\uc740 \ud55c\uae00\uc0ac\uc6a9\uc774 \uac00\ub2a5
|
|
||||||
# 4. \uc904\uc744 \ubc14\uafc0 \ud544\uc694\uac00 \uc788\uc73c\uba74 '\'\ub97c \ub77c\uc778\uc758 \ub05d\uc5d0 \ucd94\uac00(\ub9cc\uc57d '\'\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c \ud558\ub294 \uacbd\uc6b0\ub294 '\\'\ub97c \uc0ac\uc6a9)
|
|
||||||
# 5. Windows\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '\\' or '/' ('\' \uc0ac\uc6a9\ud558\uba74 \uc548\ub428)
|
|
||||||
# 6. Unix\uc5d0\uc11c\uc758 \ub514\ub809\ud1a0\ub9ac \ud45c\uc2dc : '/'
|
|
||||||
# 7. \uc8fc\uc11d\ubb38 \ucc98\ub9ac\ub294 #\uc0ac\uc6a9
|
|
||||||
# 8. value\uac12 \ub4a4\uc5d0 \uc2a4\ud398\uc774\uc2a4\uac00 \uc874\uc7ac\ud558\ub294 \uacbd\uc6b0 \uc11c\ube14\ub9bf\uc5d0\uc11c \ucc38\uc870\ud560\ub54c\ub294 \uc5d0\ub7ec\ubc1c\uc0dd\ud560 \uc218 \uc788\uc73c\ubbc0\ub85c trim()\ud558\uac70\ub098 \ub9c8\uc9c0\ub9c9 \uacf5\ubc31\uc5c6\uc774 properties \uac12\uc744 \uc124\uc815\ud560\uac83
|
|
||||||
#-----------------------------------------------------------------------
|
|
||||||
|
|
||||||
# \uc6b4\uc601\uc11c\ubc84 \ud0c0\uc785(WINDOWS, UNIX)
|
|
||||||
Globals.OsType = WINDOWS
|
|
||||||
|
|
||||||
# G4C \uc5f0\uacb0\uc6a9 IP (localhost)
|
|
||||||
Globals.LocalIp = 127.0.0.1
|
|
||||||
|
|
||||||
# DB\uc11c\ubc84 \ud0c0\uc785(mysql,oracle,altibase,tibero) - datasource \ubc0f sqlMap \ud30c\uc77c \uc9c0\uc815\uc5d0 \uc0ac\uc6a9\ub428
|
|
||||||
Globals.DbType = mysql
|
|
||||||
|
|
||||||
|
|
||||||
Globals.Env = prod
|
|
||||||
|
|
||||||
# mysql
|
|
||||||
Globals.DriverClassName=com.mysql.jdbc.Driver
|
|
||||||
#Globals.Url=jdbc:mysql://139.150.72.157:3306/mjon
|
|
||||||
Globals.Url=jdbc:mysql://10.12.107.4:3306/mjon
|
|
||||||
Globals.UserName= mjonUr
|
|
||||||
Globals.Password= mjon!@#$
|
|
||||||
|
|
||||||
# MainPage Setting(admin)
|
|
||||||
Globals.MainPage = /cmm/main/mainPage.do
|
|
||||||
#\ucee8\ud150\uce20 \ud30c\uc77c\uc704\uce58
|
|
||||||
#Globals.ckeditorUploadDir=/home/file/ckeditor/
|
|
||||||
Globals.ckeditorUploadDir=/usr/local/tomcat/file/ckeditor/
|
|
||||||
#TEST SERVER
|
|
||||||
Globals.RealCntFileFolder=C:/eGovFrameDev-3.9.0-64bit_ncms/workspace/ncms39/src/main/webapp/WEB-INF/jsp/cnt/
|
|
||||||
Globals.Solr.url=http://localhost:8983/solr
|
|
||||||
|
|
||||||
#Globals.file.saveDir=D:/dv/eGovFrameDev-3.9.0-64bit/workspace/mjon/
|
|
||||||
Globals.file.saveDir=/usr/local/tomcat
|
|
||||||
|
|
||||||
|
|
||||||
#whois openApi \uc544\uc774\ud53c \uccb4\ud06c
|
|
||||||
whois.api.key = 8nrytiochRBf3uEZ8GuIaTWdSTZP6Gw+9x9PIhAOjOt6+9fhyvOrpgVmlThdNL2kz1Eh/6jLVv7O+YnwE4bs7g==
|
|
||||||
whois.api.url = http://apis.data.go.kr/B551505/whois/ipas_country_code
|
|
||||||
|
|
||||||
|
|
||||||
#SNS \ub85c\uadf8\uc778 KEY \uac12
|
|
||||||
#ITN \ub124\uc774\ubc84
|
|
||||||
Globals.itn.naver.clentId=d9Ohvhty_RVsfrq9p_2J
|
|
||||||
Globals.itn.naver.clientSecret=kwiEmpkLg5
|
|
||||||
Globals.itn.naver.returnUrl=http://localhost:80/snsLogin/naverOauth.do
|
|
||||||
#ITN \uce74\uce74\uc624
|
|
||||||
Globals.itn.kakao.restApiKey=10b66ad0c44b68b659855ddd64db2c44
|
|
||||||
Globals.itn.kakao.returnUrl=http://localhost:80/snsLogin/kakaoOauth.do
|
|
||||||
|
|
||||||
#\uc0ac\uc774\ud2b8 \uc544\uc774\ub514 \uc81c\uac70\ub85c JSP\uc5d0\uc11c siteId/siteNm \ubcf4\uc5ec\uc8fc\uae30 \uc704\ud574
|
|
||||||
Globals.homepage.siteId=mjon
|
|
||||||
Globals.homepage.siteNm=\ubb38\uc790ON
|
|
||||||
|
|
||||||
#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ub098\uc774\uc2a4\ud398\uc774 ID
|
|
||||||
Globals.Nicepay.Id = itn180208
|
|
||||||
#\ub098\uc774\uc2a4\ud398\uc774 \ud604\uae08\uc601\uc218\uc99d \ubc1c\ud589\uc744 \uc704\ud55c \ud68c\uc0ac \uc0ac\uc5c5\uc790\ubc88\ud638
|
|
||||||
Globals.Business.number = 6538700858
|
|
||||||
|
|
||||||
#itn \ucc44\uc6a9\uacf5\uace0\ub97c \uc704\ud55c \uc124\uc815
|
|
||||||
#\ud30c\uc77c \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c
|
|
||||||
Globals.itn.file.saveDir=/usr/local/tomcat/file/reDir/
|
|
||||||
#\uba54\uc77c \ud15c\ud50c\ub9bf URL
|
|
||||||
Globals.itn.recruit.template.url=https://www.munjaon.co.kr/publish/email_form_itn_recruit.html
|
|
||||||
#\uba54\uc77c \ubb38\uc758\ud558\uae30 \ud15c\ud50c\ub9bf URL
|
|
||||||
Globals.itn.contact.us.template.url=https://www.munjaon.co.kr/publish/email_form_itn_contact_us.html
|
|
||||||
#\uba54\uc77c \uc218\uc2e0\uc790 \uc8fc\uc18c
|
|
||||||
Globals.itn.mail.to.address=phs1704@daum.net
|
|
||||||
#Globals.itn.mail.to.address=leehoyoung250@daum.net
|
|
||||||
|
|
||||||
#\ube44\uc988\ubfcc\ub9ac\uc624 \uc124\uc815
|
|
||||||
Globals.mjon.kakao.dir=/usr/local/tomcat/file/kakao
|
|
||||||
#\ubb38\uc790\uc628 \uce74\uce74\uc624 \uc11c\ube44\uc2a4 \uc815\ubcf4 (\uc804\uc1a1\uc0ac : \ube44\uc988\ubfcc\ub9ac\uc624)
|
|
||||||
Globals.mjon.biz.url=https://kapi.ppurio.com
|
|
||||||
Globals.mjon.biz.id=itn0202
|
|
||||||
Globals.mjon.biz.kakao.apiKey=dheBWCONP6J5
|
|
||||||
|
|
||||||
Globals.fax.xpedite.id=kr/itn0202
|
|
||||||
Globals.fax.xpedite.pw=easytour7!
|
|
||||||
Globals.fax.file.save.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.convert.path=/usr/local/tomcat/file/sht/fax/Convert
|
|
||||||
Globals.fax.file.ori.path=/usr/local/tomcat/file/sht/fax
|
|
||||||
Globals.fax.file.permit.ext=hwp,hwpml,doc,xls,ppt,pdf,txt,docx,xlsx,pptx,tif,jpg,jpeg,gif,bmp,gul
|
|
||||||
|
|
||||||
#KG \ubaa8\ube4c\ub9ac\uc5b8\uc2a4 \uc124\uc815
|
|
||||||
#CARD
|
|
||||||
Globals.pay.kgm.card.cnSvcid=191017078687
|
|
||||||
Globals.pay.kgm.card.payMode=10
|
|
||||||
#BANK
|
|
||||||
Globals.pay.kgm.bank.raSvcid=230510133362
|
|
||||||
Globals.pay.kgm.bank.payMode=00
|
|
||||||
#MOBILE
|
|
||||||
Globals.pay.kgm.mobile.mcSvcid=170622040674
|
|
||||||
Globals.pay.kgm.mobile.payMode=00
|
|
||||||
@ -1,308 +0,0 @@
|
|||||||
fail.common.msg=\uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4!
|
|
||||||
fail.common.sql=sql \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! error code: {0}, error msg: {1}
|
|
||||||
info.nodata.msg=\ud574\ub2f9 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI Common resource#
|
|
||||||
button.search=\uac80\uc0c9
|
|
||||||
button.use=\uc0ac\uc6a9
|
|
||||||
button.notUsed=\uc0ac\uc6a9\uc911\uc9c0
|
|
||||||
button.inquire=\uc870\ud68c
|
|
||||||
button.update=\uc218\uc815
|
|
||||||
button.create=\ub4f1\ub85d
|
|
||||||
button.delete=\uc0ad\uc81c
|
|
||||||
button.deleteDatabase=\uc644\uc804\uc0ad\uc81c
|
|
||||||
button.close=\ub2eb\uae30
|
|
||||||
button.save=\uc800\uc7a5
|
|
||||||
button.list=\ubaa9\ub85d
|
|
||||||
button.reset=\ucde8\uc18c
|
|
||||||
button.passwordUpdate=\uc554\ud638\ubcc0\uacbd
|
|
||||||
button.subscribe=\uac00\uc785\uc2e0\uccad
|
|
||||||
button.realname=\uc2e4\uba85\ud655\uc778
|
|
||||||
button.moveToGpin=GPIN\uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9
|
|
||||||
button.moveToIhidnum=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638 \uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9
|
|
||||||
button.agree=\ub3d9\uc758
|
|
||||||
button.disagree=\ube44\ub3d9\uc758
|
|
||||||
button.possible = \uac00\ub2a5
|
|
||||||
button.impossible = \ubd88\uac00\ub2a5
|
|
||||||
button.qnaregist=Q&A\ub4f1\ub85d
|
|
||||||
button.cnsltregist=\uc0c1\ub2f4\ub4f1\ub85d
|
|
||||||
button.preview=\ubbf8\ub9ac\ubcf4\uae30
|
|
||||||
button.next=\ub2e4\uc74c
|
|
||||||
button.add=\ubc14\ub85c\ucd94\uac00
|
|
||||||
button.confirm=\ud655\uc778
|
|
||||||
|
|
||||||
|
|
||||||
#UI Common Message#
|
|
||||||
common.save.msg=\uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.regist.msg=\ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.delete.msg=\uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.update.msg=\uc218\uc815\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.nodata.msg=\uc790\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \uac80\uc0c9\uc870\uac74\uc744 \uc120\ud0dd\ud574\uc8fc\uc138\uc694
|
|
||||||
common.required.msg=(\uc740)\ub294 \ud544\uc218\uc785\ub825\ud56d\ubaa9\uc785\ub2c8\ub2e4.
|
|
||||||
common.acknowledgement.msg=\uc2b9\uc778\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.acknowledgementcancel.msg=\uc2b9\uc778\ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
|
|
||||||
success.common.select=\uc815\uc0c1\uc801\uc73c\ub85c \uc870\ud68c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.insert=\uc815\uc0c1\uc801\uc73c\ub85c \ub4f1\ub85d\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.update=\uc815\uc0c1\uc801\uc73c\ub85c \uc218\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.delete=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.useN=\uc815\uc0c1\uc801\uc73c\ub85c \ubbf8\uc0ac\uc6a9 \ucc98\ub9ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.useY=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ac\uc6a9 \ucc98\ub9ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
success.request.msg = \uc694\uccad\ucc98\ub9ac\uac00 \uc131\uacf5\uc801\uc73c\ub85c \uc218\ud589\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
common.imposbl.fileupload = \ub354 \uc774\uc0c1 \ud30c\uc77c\uc744 \ucca8\ubd80\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
common.isConfmDe.msg=\uc2b9\uc778\uc77c\uc790\ub97c \ud655\uc778 \ubc14\ub78d\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
fail.common.auth = \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.imposbl = \uc774\uc6a9\uc774 \ubd88\uac00 \ud569\ub2c8\ub2e4.
|
|
||||||
fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.update = \uc218\uc815\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.delete = \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.delete.upperMenuExist = \ucc38\uc870\ub418\ub294 \uba54\ub274\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.select = \uc870\ud68c\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
common.isExist.msg = \uc774\ubbf8 \uc874\uc7ac\ud558\uac70\ub098 \uacfc\uac70\uc5d0 \ub4f1\ub85d\uc774 \ub418\uc5c8\ub358 \uc0c1\ud0dc\uc785\ub2c8\ub2e4.
|
|
||||||
fail.common.login = \ub85c\uadf8\uc778 \uc815\ubcf4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.idsearch = \uc544\uc774\ub514\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.pwsearch = \ube44\ubc00\ubc88\ud638\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.request.msg = \uc694\uccad\ucc98\ub9ac\ub97c \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI User Message#
|
|
||||||
fail.user.passwordUpdate1=\ud604\uc7ac \ube44\ubc00\ubc88\ud638\uac00 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.user.passwordUpdate2=\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
info.user.rlnmCnfirm=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624.
|
|
||||||
success.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4.
|
|
||||||
fail.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.user.connectFail=\uc2dc\uc2a4\ud15c \uc7a5\uc560\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.(\uc778\uc99d\uc11c\ubc84 \uc5f0\uacb0 \uc2e4\ud328)
|
|
||||||
info.user.rlnmPinCnfirm=\uacf5\uacf5 \uc544\uc774\ud540 \uc544\uc774\ub514\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624.
|
|
||||||
success.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4.
|
|
||||||
fail.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
info.user.login=\ub85c\uadf8\uc778 \ud6c4 \uc774\uc6a9\ud574 \uc8fc\uc138\uc694.
|
|
||||||
|
|
||||||
|
|
||||||
#UI Cop Message#
|
|
||||||
cop.extrlUser = \uc678\ubd80\uc0ac\uc6a9\uc790
|
|
||||||
cop.intrlUser = \ub0b4\ubd80\uc0ac\uc6a9\uc790
|
|
||||||
cop.private = \ube44\uacf5\uac1c
|
|
||||||
cop.public = \uacf5\uac1c
|
|
||||||
|
|
||||||
cop.adbkNm = \uc8fc\uc18c\ub85d\uba85
|
|
||||||
cop.othbcScope = \uacf5\uac1c\ubc94\uc704
|
|
||||||
cop.company = \ud68c\uc0ac
|
|
||||||
cop.part = \ubd80\uc11c
|
|
||||||
cop.man = \uac1c\uc778
|
|
||||||
cop.adbkUser = \uad6c\uc131\uc6d0
|
|
||||||
cop.bbsNm = \uac8c\uc2dc\ud310\uba85
|
|
||||||
cop.bbsIntrcn = \uac8c\uc2dc\ud310\uc18c\uac1c
|
|
||||||
cop.bbsTyCode = \uac8c\uc2dc\ud310 \uc720\ud615
|
|
||||||
cop.bbsAttrbCode = \uac8c\uc2dc\ud310 \uc18d\uc131
|
|
||||||
cop.replyPosblAt = \ub2f5\uc7a5\uac00\ub2a5\uc5ec\ubd80
|
|
||||||
cop.fileAtchPosblAt = \ud30c\uc77c\ucca8\ubd80\uac00\ub2a5\uc5ec\ubd80
|
|
||||||
cop.posblAtchFileNumber = \ucca8\ubd80\uac00\ub2a5\ud30c\uc77c \uc22b\uc790
|
|
||||||
cop.tmplatId = \ud15c\ud50c\ub9bf \uc815\ubcf4
|
|
||||||
cop.guestList.subject = \ubc29\uba85\ub85d \uac8c\uc2dc\uae00\uc785\ub2c8\ub2e4.
|
|
||||||
cop.nttSj = \uc81c\ubaa9
|
|
||||||
cop.nttCn = \uae00\ub0b4\uc6a9
|
|
||||||
cop.ntceBgnde = \uac8c\uc2dc\uc2dc\uc791\uc77c
|
|
||||||
cop.ntceEndde = \uac8c\uc2dc\uc885\ub8cc\uc77c
|
|
||||||
cop.ntcrNm = \uc791\uc131\uc790
|
|
||||||
cop.password = \ud328\uc2a4\uc6cc\ub4dc
|
|
||||||
cop.atchFile = \ud30c\uc77c\ucca8\ubd80
|
|
||||||
cop.guestList = \ubc29\uba85\ub85d
|
|
||||||
cop.guestListCn = \ubc29\uba85\ub85d \ub0b4\uc6a9
|
|
||||||
cop.noticeTerm = \uac8c\uc2dc\uae30\uac04
|
|
||||||
cop.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d
|
|
||||||
cop.cmmntyNm = \ucee4\ubba4\ub2c8\ud2f0\uba85
|
|
||||||
cop.cmmntyIntrcn = \ucee4\ubba4\ub2c8\ud2f0 \uc18c\uac1c
|
|
||||||
cop.cmmntyMngr = \ucee4\ubba4\ub2c8\ud2f0 \uad00\ub9ac\uc790
|
|
||||||
cop.clbOprtr = \ub3d9\ud638\ud68c \uc6b4\uc601\uc790
|
|
||||||
cop.clbIntrcn = \ub3d9\ud638\ud68c \uc18c\uac1c
|
|
||||||
cop.clbNm = \ub3d9\ud638\ud68c \uba85
|
|
||||||
cop.tmplatNm = \ud15c\ud50c\ub9bf\uba85
|
|
||||||
cop.tmplatSeCode = \ud15c\ud50c\ub9bf \uad6c\ubd84
|
|
||||||
cop.tmplatCours = \ud15c\ud50c\ub9bf\uacbd\ub85c
|
|
||||||
cop.useAt = \uc0ac\uc6a9\uc5ec\ubd80
|
|
||||||
cop.ncrdNm = \uc774\ub984
|
|
||||||
cop.cmpnyNm = \ud68c\uc0ac\uba85
|
|
||||||
cop.deptNm = \ubd80\uc11c\uba85
|
|
||||||
cop.ofcpsNm = \uc9c1\uc704
|
|
||||||
cop.clsfNm = \uc9c1\uae09
|
|
||||||
cop.emailAdres = \uc774\uba54\uc77c\uc8fc\uc18c
|
|
||||||
cop.telNo = \uc804\ud654\ubc88\ud638
|
|
||||||
cop.mbtlNum = \ud734\ub300\ud3f0\ubc88\ud638
|
|
||||||
cop.adres = \uc8fc\uc18c
|
|
||||||
cop.extrlUserAt = \uc678\ubd80\uc0ac\uc6a9\uc790\uc5ec\ubd80
|
|
||||||
cop.publicAt = \uacf5\uac1c\uc5ec\ubd80
|
|
||||||
cop.remark = \ube44\uace0
|
|
||||||
cop.trgetNm = \ucee4\ubba4\ub2c8\ud2f0/\ub3d9\ud638\ud68c \uc815\ubcf4
|
|
||||||
cop.preview = \ubbf8\ub9ac\ubcf4\uae30
|
|
||||||
|
|
||||||
cop.withdraw.msg=\ud0c8\ud1f4\ucc98\ub9ac \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.reregist.msg=\uc7ac\uac00\uc785 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.registmanager.msg=\uc6b4\uc601\uc9c4\uc73c\ub85c \ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.use.msg=\uc0ac\uc6a9 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.unuse.msg=\uc0ac\uc6a9\uc911\uc9c0 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.delete.confirm.msg=\uc0ac\uc6a9\uc911\uc9c0\ub97c \uc120\ud0dd\ud558\uc2e4 \uacbd\uc6b0 \ub2e4\uc2dc \uc0ac\uc6a9\uc73c\ub85c \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4.
|
|
||||||
cop.ing.msg=\uc2b9\uc778\uc694\uccad \uc911\uc785\ub2c8\ub2e4.
|
|
||||||
cop.request.msg=\uac00\uc785\uc2e0\uccad\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc694\uccad\ub418\uc5c8\uc2b5\ub2c8\ub2e4
|
|
||||||
cop.password.msg=\ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud574 \uc8fc\uc2ed\uc2dc\uc624.
|
|
||||||
cop.password.not.same.msg=\ud328\uc2a4\uc6cc\ub4dc\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
cop.comment.title = \ub313\uae00
|
|
||||||
cop.comment.wrterNm = \uc791\uc131\uc790
|
|
||||||
cop.comment.commentCn = \ub0b4\uc6a9
|
|
||||||
cop.comment.commentPassword = \ud328\uc2a4\uc6cc\ub4dc
|
|
||||||
|
|
||||||
cop.satisfaction.wrterNm = \uc791\uc131\uc790
|
|
||||||
cop.satisfaction.stsfdgCn = \ub0b4\uc6a9
|
|
||||||
cop.satisfaction.stsfdg = \ub9cc\uc871\ub3c4
|
|
||||||
cop.satisfaction.stsfdgPassword = \ud328\uc2a4\uc6cc\ub4dc
|
|
||||||
|
|
||||||
cop.scrap.scrapNm = \uc2a4\ud06c\ub7a9\uba85
|
|
||||||
|
|
||||||
#UI USS Message#
|
|
||||||
uss.ion.noi.ntfcSj=\uc81c\ubaa9
|
|
||||||
uss.ion.noi.ntfcCn=\ub0b4\uc6a9
|
|
||||||
uss.ion.noi.ntfcDate=\uc54c\ub9bc\uc77c\uc790
|
|
||||||
uss.ion.noi.ntfcTime=\uc54c\ub9bc\uc2dc\uac04
|
|
||||||
uss.ion.noi.ntfcHH=\uc54c\ub9bc\uc2dc\uac04
|
|
||||||
uss.ion.noi.ntfcMM=\uc54c\ub9bc\ubd84
|
|
||||||
uss.ion.noi.bhNtfcIntrvl=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9
|
|
||||||
uss.ion.noi.bhNtfcIntrvl.msg=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.
|
|
||||||
uss.ion.noi.alertNtfcTime=\uc54c\ub9bc\uc77c\uc790 \ubc0f \uc2dc\uac04\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI COP Message#
|
|
||||||
cop.sms.trnsmitTelno=\ubc1c\uc2e0\uc804\ud654\ubc88\ud638
|
|
||||||
cop.sms.trnsmitCn=\uc804\uc1a1\ub0b4\uc6a9
|
|
||||||
cop.sms.recptnTelno=\uc218\uc2e0\uc804\ud654\ubc88\ud638
|
|
||||||
cop.sms.send=\uc804\uc1a1
|
|
||||||
cop.sms.addRecptn=\ucd94\uac00
|
|
||||||
cop.sms.recptnTelno.msg=\uc218\uc2e0\uc804\ud654\ubc88\ud638 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI User Message#
|
|
||||||
addr.agency.addrGrpNm=\uc2e0\uaddc \uadf8\ub8f9\uba85
|
|
||||||
addr.agency.addrPhoneNo=\ud734\ub300\ud3f0 \ubc88\ud638
|
|
||||||
addr.agency.atFileBasicWrite=\uc8fc\uc18c\ub85d \ud30c\uc77c
|
|
||||||
addr.agency.nttCn=\uc694\uccad\uc0ac\ud56d
|
|
||||||
|
|
||||||
#UI sym.log Message#
|
|
||||||
sym.log.histSeCode = \uc774\ub825\uad6c\ubd84
|
|
||||||
sym.log.sysNm = \uc2dc\uc2a4\ud15c\uba85
|
|
||||||
sym.log.histCn = \uc774\ub825\ub0b4\uc6a9
|
|
||||||
sym.log.atchFile = \ucca8\ubd80\ud30c\uc77c
|
|
||||||
sym.log.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d
|
|
||||||
sym.ems.receiver = \ubc1b\ub294\uc0ac\ub78c
|
|
||||||
sym.ems.title = \uc81c\ubaa9
|
|
||||||
sym.ems.content = \ubc1c\uc2e0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors#
|
|
||||||
errors.prefix=<div class="error">
|
|
||||||
errors.suffix=</div><br/>
|
|
||||||
|
|
||||||
errors.required={0}\uc740(\ub294) \ud544\uc218 \uc785\ub825\uac12\uc785\ub2c8\ub2e4.
|
|
||||||
errors.minlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.maxlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
errors.invalid={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4.
|
|
||||||
errors.minInteger={0}\uc740(\ub294) \uc720\ud6a8\ud55c \uac12\uc774 \uc544\ub2d9\ub2c8\ub2e4. 1 \uc774\uc0c1\uc758 \uac12\uc744 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.byte={0}\uc740(\ub294) byte\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.short={0}\uc740(\ub294) short\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.integer={0}\uc740(\ub294) \uc815\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.long={0}\uc740(\ub294) long \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.float={0}\uc740(\ub294) \uc2e4\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.double={0}\uc740(\ub294) double \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.date={0}\uc740(\ub294) \ub0a0\uc9dc \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4.
|
|
||||||
errors.range={0}\uc740(\ub294) {1}\uacfc {2} \uc0ac\uc774\uc758 \uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.creditcard={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc2e0\uc6a9\uce74\ub4dc \ubc88\ud638\uc785\ub2c8\ub2e4.
|
|
||||||
errors.email={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.ihidnum=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\uc785\ub2c8\ub2e4.
|
|
||||||
errors.korean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc785\ub825\ud558\uc154\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.ip=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 IP\uc8fc\uc18c\uc785\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.password1={0}\uc740(\ub294) 8~20\uc790 \ub0b4\uc5d0\uc11c \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.password2={0}\uc740(\ub294) \ud55c\uae00,\ud2b9\uc218\ubb38\uc790,\ub744\uc5b4\uc4f0\uae30\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
errors.password3={0}\uc740(\ub294) \uc21c\ucc28\uc801\uc778 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
errors.password4={0}\uc740(\ub294) \ubc18\ubcf5\ub418\ub294 \ubb38\uc790\ub098 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.notKorean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc0ac\uc6a9\ud558\uc2e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
error.security.runtime.error = error
|
|
||||||
#Vlidator Errors- wordDicaryVO#
|
|
||||||
wordDicaryVO.wordNm=\uc6a9\uc5b4\uba85
|
|
||||||
wordDicaryVO.engNm=\uc601\ubb38\uba85
|
|
||||||
wordDicaryVO.wordDc=\uc6a9\uc5b4\uc124\uba85
|
|
||||||
wordDicaryVO.synonm=\ub3d9\uc758\uc5b4
|
|
||||||
|
|
||||||
#Vlidator Errors- cnsltManageVO#
|
|
||||||
cnsltManageVO.cnsltSj=\uc0c1\ub2f4\uc81c\ubaa9
|
|
||||||
cnsltManageVO.cnsltCn=\uc0c1\ub2f4\ub0b4\uc6a9
|
|
||||||
cnsltManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638
|
|
||||||
cnsltManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638
|
|
||||||
cnsltManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638
|
|
||||||
cnsltManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638
|
|
||||||
cnsltManageVO.wrterNm=\uc791\uc131\uc790\uba85
|
|
||||||
cnsltManageVO.managtCn=\ub2f5\ubcc0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- siteManageVO#
|
|
||||||
siteManageVO.siteNm=\uc0ac\uc774\ud2b8\uba85
|
|
||||||
siteManageVO.siteUrl=\uc0ac\uc774\ud2b8 URL
|
|
||||||
siteManageVO.siteDc=\uc0ac\uc774\ud2b8\uc124\uba85
|
|
||||||
siteManageVO.siteThemaClCode=\uc0ac\uc774\ud2b8\uc8fc\uc81c\ubd84\ub958
|
|
||||||
siteManageVO.actvtyAt=\ud65c\uc131\uc5ec\ubd80
|
|
||||||
siteManageVO.useAt=\uc0ac\uc6a9\uc5ec\ubd80
|
|
||||||
|
|
||||||
#Vlidator Errors- recomendSiteManageVO#
|
|
||||||
recomendSiteManageVO.recomendSiteNm=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uba85
|
|
||||||
recomendSiteManageVO.recomendSiteUrl=\ucd94\ucc9c\uc0ac\uc774\ud2b8 URL
|
|
||||||
recomendSiteManageVO.recomendSiteDc=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc124\uba85
|
|
||||||
recomendSiteManageVO.recomendResnCn=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc2b9\uc778\uc0ac\uc720
|
|
||||||
recomendSiteManageVO.confmDe=\uc2b9\uc778\uc77c\uc790
|
|
||||||
|
|
||||||
#Vlidator Errors- hpcmManageVO#
|
|
||||||
hpcmManageVO.hpcmSeCode=\ub3c4\uc6c0\ub9d0\uad6c\ubd84
|
|
||||||
hpcmManageVO.hpcmDf=\ub3c4\uc6c0\ub9d0\uc815\uc758
|
|
||||||
hpcmManageVO.hpcmDc=\ub3c4\uc6c0\ub9d0\uc124\uba85
|
|
||||||
|
|
||||||
#Vlidator Errors- newsManageVO#
|
|
||||||
newsManageVO.newsSj=\ub274\uc2a4\uc81c\ubaa9
|
|
||||||
newsManageVO.newsCn=\ub274\uc2a4\ub0b4\uc6a9
|
|
||||||
newsManageVO.ntceDe=\uac8c\uc2dc\uc77c\uc790
|
|
||||||
|
|
||||||
#Vlidator Errors- faqManageVO#
|
|
||||||
faqManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9
|
|
||||||
faqManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9
|
|
||||||
faqManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- stplatManageVO#
|
|
||||||
stplatManageVO.useStplatNm=\uc774\uc6a9\uc57d\uad00\uba85
|
|
||||||
stplatManageVO.useStplatCn=\uc774\uc6a9\uc57d\uad00\ub0b4\uc6a9
|
|
||||||
stplatManageVO.infoProvdAgreCn=\uc815\ubcf4\uc81c\uacf5\ub3d9\uc758\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- cpyrhtPrtcPolicyVO#
|
|
||||||
cpyrhtPrtcPolicyVO.cpyrhtPrtcPolicyCn=\uc800\uc791\uad8c\ubcf4\ud638\uc815\ucc45\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- qnaManageVO#
|
|
||||||
qnaManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9
|
|
||||||
qnaManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9
|
|
||||||
qnaManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638
|
|
||||||
qnaManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638
|
|
||||||
qnaManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638
|
|
||||||
qnaManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638
|
|
||||||
qnaManageVO.wrterNm=\uc791\uc131\uc790\uba85
|
|
||||||
qnaManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- ReprtStatsVO#
|
|
||||||
sts.reprtId = \ubcf4\uace0\uc11cID
|
|
||||||
sts.title = \ubcf4\uace0\uc11c\uba85
|
|
||||||
sts.category = \ubcf4\uace0\uc11c\uc720\ud615
|
|
||||||
sts.status = \uc9c4\ud589\uc0c1\ud0dc
|
|
||||||
sts.regDate = \ub4f1\ub85d\uc77c\uc2dc
|
|
||||||
|
|
||||||
#Rest day messages#
|
|
||||||
sym.cal.restDay = \ud734\uc77c\uc77c\uc790
|
|
||||||
sym.cal.restName = \ud734\uc77c\uba85
|
|
||||||
sym.cal.restDetail = \ud734\uc77c\uc124\uba85
|
|
||||||
sym.cal.restCategory = \ud734\uc77c\uad6c\ubd84
|
|
||||||
|
|
||||||
image.errorBg = \uc624\ub958\uc774\ubbf8\uc9c0
|
|
||||||
@ -1,199 +0,0 @@
|
|||||||
fail.common.msg=error ocurred!
|
|
||||||
fail.common.sql=sql error ocurred! error code: {0}, error msg: {1}
|
|
||||||
info.nodata.msg=no data found.
|
|
||||||
|
|
||||||
#UI Common resource#
|
|
||||||
button.search=Search
|
|
||||||
button.use=use
|
|
||||||
button.notUsed=Not used
|
|
||||||
button.inquire=inquire
|
|
||||||
button.update=update
|
|
||||||
button.create=create
|
|
||||||
button.delete=delete
|
|
||||||
button.close=close
|
|
||||||
button.save=save
|
|
||||||
button.list=list
|
|
||||||
button.reset=reset
|
|
||||||
button.passwordUpdate=password update
|
|
||||||
button.subscribe=subscribe
|
|
||||||
button.realname=realname confirm
|
|
||||||
button.moveToGpin=move to gpin confirm
|
|
||||||
button.moveToIhidnum=move to ihidnum confirm
|
|
||||||
button.agree=agree
|
|
||||||
button.disagree=disagree
|
|
||||||
button.possible = possible
|
|
||||||
button.impossible = impossible
|
|
||||||
|
|
||||||
#UI Common Message#
|
|
||||||
common.save.msg=confirm save?
|
|
||||||
common.regist.msg=confirm regist?
|
|
||||||
common.delete.msg=confirm delete?
|
|
||||||
common.update.msg=confirm update?
|
|
||||||
common.nodata.msg=There is no data. please choose another seach keyword
|
|
||||||
common.required.msg=is required field
|
|
||||||
common.acknowledgement.msg=confirm acknowledgement?
|
|
||||||
common.acknowledgementcancel.msg=confirm acknowledgement cancel?
|
|
||||||
|
|
||||||
success.request.msg=you're request successfully done
|
|
||||||
|
|
||||||
success.common.select=successfully selected
|
|
||||||
success.common.insert=successfully inserted
|
|
||||||
success.common.update=successfully updated
|
|
||||||
success.common.delete=successfully deleted
|
|
||||||
|
|
||||||
common.imposbl.fileupload = cannot upload files
|
|
||||||
|
|
||||||
fail.common.auth = fail to permission
|
|
||||||
fail.common.imposbl = not availabl
|
|
||||||
fail.common.insert = fail to insert.
|
|
||||||
fail.common.update = fail to update
|
|
||||||
fail.common.delete = fail to delete
|
|
||||||
fail.common.delete.upperMenuExist = fail to delete[upperMenuId foreign key error]
|
|
||||||
fail.common.select = fail to select
|
|
||||||
common.isExist.msg = already exist
|
|
||||||
fail.common.login = login information is not correct
|
|
||||||
fail.common.idsearch = can not find id
|
|
||||||
fail.common.pwsearch = can not find password
|
|
||||||
|
|
||||||
|
|
||||||
#UI User Message#
|
|
||||||
fail.user.passwordUpdate1=current password is not correct
|
|
||||||
fail.user.passwordUpdate2=password confirm is not correct
|
|
||||||
info.user.rlnmCnfirm=realname confirm ready
|
|
||||||
success.user.rlnmCnfirm=it is realname
|
|
||||||
fail.user.rlnmCnfirm=it is not realname
|
|
||||||
fail.user.connectFail=connection fail
|
|
||||||
|
|
||||||
#UI Cop Message#
|
|
||||||
cop.extrlUser = External User
|
|
||||||
cop.intrlUser = Internal User
|
|
||||||
cop.private = private
|
|
||||||
cop.public = public
|
|
||||||
|
|
||||||
cop.bbsNm = BBS Name
|
|
||||||
cop.bbsIntrcn = BBS Introduction
|
|
||||||
cop.bbsTyCode = BBS Type
|
|
||||||
cop.bbsAttrbCode = BBS Attribute
|
|
||||||
cop.replyPosblAt = Reply Possible Alternative
|
|
||||||
cop.fileAtchPosblAt = File Attach Possible Alternative
|
|
||||||
cop.posblAtchFileNumber = Possible Attach File Number
|
|
||||||
cop.tmplatId = Template Information
|
|
||||||
cop.guestList.subject = This article registered by Guest List
|
|
||||||
cop.nttSj = Notice Subject
|
|
||||||
cop.nttCn = Notice Contents
|
|
||||||
cop.ntceBgnde = Notice Start Date
|
|
||||||
cop.ntceEndde = Notice End Date
|
|
||||||
cop.ntcrNm = Noticer Name
|
|
||||||
cop.password = PassWord
|
|
||||||
cop.atchFile = Attach Files
|
|
||||||
cop.guestList = Guest List
|
|
||||||
cop.guestListCn = Guest List Contents
|
|
||||||
cop.noticeTerm = Notice term
|
|
||||||
cop.atchFileList = Attached File List
|
|
||||||
cop.cmmntyNm = Community Name
|
|
||||||
cop.cmmntyIntrcn = Community Introduction
|
|
||||||
cop.cmmntyMngr = Community Manager
|
|
||||||
cop.clbOprtr = Club Operator
|
|
||||||
cop.clbIntrcn = Club Introduction
|
|
||||||
cop.clbNm = Club Name
|
|
||||||
cop.tmplatNm = Template Name
|
|
||||||
cop.tmplatSeCode = Template Se Code
|
|
||||||
cop.tmplatCours = Template Cours
|
|
||||||
cop.useAt = Use Alternative
|
|
||||||
cop.ncrdNm = NameCard user name
|
|
||||||
cop.cmpnyNm = Company name
|
|
||||||
cop.deptNm = Department name
|
|
||||||
cop.ofcpsNm = OFCPS name
|
|
||||||
cop.clsfNm = Class Name
|
|
||||||
cop.emailAdres = E-mail
|
|
||||||
cop.telNo = Tel No.
|
|
||||||
cop.mbtlNum = Mobile
|
|
||||||
cop.adres = Address
|
|
||||||
cop.extrlUserAt = External User alternative
|
|
||||||
cop.publicAt = Public open alternative
|
|
||||||
cop.remark = Remark
|
|
||||||
cop.trgetNm = Company/Club Information
|
|
||||||
cop.preview = preview
|
|
||||||
|
|
||||||
cop.withdraw.msg=confirm withdrawal memebership?
|
|
||||||
cop.reregist.msg=confirm re-registration?
|
|
||||||
cop.registmanager.msg=confirm registration of manager?
|
|
||||||
cop.use.msg=confirm use?
|
|
||||||
cop.unuse.msg=confirm stop using?
|
|
||||||
cop.delete.confirm.msg=If you choose to disable the re-use change is impossible.
|
|
||||||
cop.ing.msg=Approval is being requested.
|
|
||||||
cop.request.msg=Signup is normally requested.
|
|
||||||
cop.password.msg=Please enter your password.
|
|
||||||
cop.password.not.same.msg=Password do not match.
|
|
||||||
|
|
||||||
cop.comment.title = Comments
|
|
||||||
cop.comment.wrterNm = Writer Name
|
|
||||||
cop.comment.commentCn = Comment
|
|
||||||
cop.comment.commentPassword = Password
|
|
||||||
|
|
||||||
cop.satisfaction.wrterNm = Writer Name
|
|
||||||
cop.satisfaction.stsfdgCn = Satisfaction
|
|
||||||
cop.satisfaction.stsfdg = Satisfaction Degree
|
|
||||||
cop.satisfaction.stsfdgPassword = Password
|
|
||||||
|
|
||||||
cop.scrap.scrapNm = Scrap Name
|
|
||||||
|
|
||||||
#UI USS Message#
|
|
||||||
uss.ion.noi.ntfcSj=Subject
|
|
||||||
uss.ion.noi.ntfcCn=Contents
|
|
||||||
uss.ion.noi.ntfcDate=Notification Date
|
|
||||||
uss.ion.noi.ntfcTime=Notification Time
|
|
||||||
uss.ion.noi.ntfcHH=Notification Hour
|
|
||||||
uss.ion.noi.ntfcMM=Notification Minute
|
|
||||||
uss.ion.noi.bhNtfcIntrvl=Beforehand Interval
|
|
||||||
uss.ion.noi.bhNtfcIntrvl.msg=Beforehand Interval is required.
|
|
||||||
uss.ion.noi.alertNtfcTime=Date and time of notification is not valid.
|
|
||||||
|
|
||||||
#UI COP Message#
|
|
||||||
cop.sms.trnsmitTelno=Sender
|
|
||||||
cop.sms.trnsmitCn=Contents
|
|
||||||
cop.sms.recptnTelno=Receiver(s)
|
|
||||||
cop.sms.send=Send
|
|
||||||
cop.sms.addRecptn=Add
|
|
||||||
cop.sms.recptnTelno.msg=The phone number of receiver is required.
|
|
||||||
|
|
||||||
#UI sym.log Message#
|
|
||||||
sym.log.histSeCode = History Code
|
|
||||||
sym.log.sysNm = System Name
|
|
||||||
sym.log.histCn = History Contents
|
|
||||||
sym.log.atchFile = Attached File
|
|
||||||
sym.log.atchFileList = Attached File List
|
|
||||||
sym.ems.receiver = Receiver
|
|
||||||
sym.ems.title = Title
|
|
||||||
sym.ems.content = Content
|
|
||||||
|
|
||||||
#Vlidator Errors#
|
|
||||||
errors.required={0} is required.
|
|
||||||
errors.minlength={0} can not be less than {1} characters.
|
|
||||||
errors.maxlength={0} can not be greater than {1} characters.
|
|
||||||
errors.invalid={0} is invalid.
|
|
||||||
|
|
||||||
errors.byte={0} must be a byte.
|
|
||||||
errors.short={0} must be a short.
|
|
||||||
errors.integer={0} must be an integer.
|
|
||||||
errors.long={0} must be a long.
|
|
||||||
errors.float={0} must be a float.
|
|
||||||
errors.double={0} must be a double.
|
|
||||||
|
|
||||||
errors.date={0} is not a date.
|
|
||||||
errors.range={0} is not in the range {1} through {2}.
|
|
||||||
errors.creditcard={0} is an invalid credit card number.
|
|
||||||
errors.email={0} is an invalid e-mail address.
|
|
||||||
|
|
||||||
#Vlidator Errors- ReprtStatsVO#
|
|
||||||
sts.reprtId = Report ID
|
|
||||||
sts.title = Report Title
|
|
||||||
sts.category = Report Category
|
|
||||||
sts.status = Report Status
|
|
||||||
sts.regDate = Registration Date
|
|
||||||
|
|
||||||
#Rest day messages#
|
|
||||||
sym.cal.restDay = Holiday Date
|
|
||||||
sym.cal.restName = Holiday Name
|
|
||||||
sym.cal.restDetail = Holiday Detail
|
|
||||||
sym.cal.restCategory = Holiday Category
|
|
||||||
@ -1,351 +0,0 @@
|
|||||||
fail.common.msg=\uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4!
|
|
||||||
fail.common.sql=sql \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4! error code: {0}, error msg: {1}
|
|
||||||
info.nodata.msg=\ud574\ub2f9 \ub370\uc774\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI Common resource#
|
|
||||||
button.search=\uac80\uc0c9
|
|
||||||
button.use=\uc0ac\uc6a9
|
|
||||||
button.notUsed=\uc0ac\uc6a9\uc911\uc9c0
|
|
||||||
button.inquire=\uc870\ud68c
|
|
||||||
button.update=\uc218\uc815
|
|
||||||
button.create=\ub4f1\ub85d
|
|
||||||
button.delete=\uc0ad\uc81c
|
|
||||||
button.deleteDatabase=\uc644\uc804\uc0ad\uc81c
|
|
||||||
button.close=\ub2eb\uae30
|
|
||||||
button.save=\uc800\uc7a5
|
|
||||||
button.list=\ubaa9\ub85d
|
|
||||||
button.reset=\ucde8\uc18c
|
|
||||||
button.passwordUpdate=\uc554\ud638\ubcc0\uacbd
|
|
||||||
button.subscribe=\uac00\uc785\uc2e0\uccad
|
|
||||||
button.realname=\uc2e4\uba85\ud655\uc778
|
|
||||||
button.moveToGpin=GPIN\uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9
|
|
||||||
button.moveToIhidnum=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638 \uc2e4\uba85\ud655\uc778\uc73c\ub85c \uc774\ub3d9
|
|
||||||
button.agree=\ub3d9\uc758
|
|
||||||
button.disagree=\ube44\ub3d9\uc758
|
|
||||||
button.possible = \uac00\ub2a5
|
|
||||||
button.impossible = \ubd88\uac00\ub2a5
|
|
||||||
button.qnaregist=Q&A\ub4f1\ub85d
|
|
||||||
button.cnsltregist=\uc0c1\ub2f4\ub4f1\ub85d
|
|
||||||
button.preview=\ubbf8\ub9ac\ubcf4\uae30
|
|
||||||
button.next=\ub2e4\uc74c
|
|
||||||
button.add=\ubc14\ub85c\ucd94\uac00
|
|
||||||
button.confirm=\ud655\uc778
|
|
||||||
|
|
||||||
|
|
||||||
#UI Common Message#
|
|
||||||
common.save.msg=\uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.regist.msg=\ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.delete.msg=\uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.update.msg=\uc218\uc815\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.nodata.msg=\uc790\ub8cc\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub2e4\ub978 \uac80\uc0c9\uc870\uac74\uc744 \uc120\ud0dd\ud574\uc8fc\uc138\uc694
|
|
||||||
common.required.msg=(\uc740)\ub294 \ud544\uc218\uc785\ub825\ud56d\ubaa9\uc785\ub2c8\ub2e4.
|
|
||||||
common.acknowledgement.msg=\uc2b9\uc778\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
common.acknowledgementcancel.msg=\uc2b9\uc778\ucde8\uc18c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
|
|
||||||
success.common.select=\uc815\uc0c1\uc801\uc73c\ub85c \uc870\ud68c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.insert=\uc815\uc0c1\uc801\uc73c\ub85c \ub4f1\ub85d\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.update=\uc815\uc0c1\uc801\uc73c\ub85c \uc218\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
success.common.delete=\uc815\uc0c1\uc801\uc73c\ub85c \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
success.request.msg = \uc694\uccad\ucc98\ub9ac\uac00 \uc131\uacf5\uc801\uc73c\ub85c \uc218\ud589\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
common.imposbl.fileupload = \ub354 \uc774\uc0c1 \ud30c\uc77c\uc744 \ucca8\ubd80\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
common.isConfmDe.msg=\uc2b9\uc778\uc77c\uc790\ub97c \ud655\uc778 \ubc14\ub78d\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
fail.common.auth = \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.imposbl = \uc774\uc6a9\uc774 \ubd88\uac00 \ud569\ub2c8\ub2e4.
|
|
||||||
fail.common.insert = \uc0dd\uc131\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.update = \uc218\uc815\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.delete = \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.delete.upperMenuExist = \ucc38\uc870\ub418\ub294 \uba54\ub274\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.delete.upperCodeExist = \ucc38\uc870\ub418\ub294 \ucf54\ub4dc\uac00 \uc788\uc5b4 \uc0ad\uc81c\uac00 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.insert.codeExist = \uc911\ubcf5\ub41c \ucf54\ub4dc\uac00 \uc788\uc5b4 \ub4f1\ub85d\uc774 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.select = \uc870\ud68c\uc5d0 \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
common.isExist.msg = \uc774\ubbf8 \uc874\uc7ac\ud558\uac70\ub098 \uacfc\uac70\uc5d0 \ub4f1\ub85d\uc774 \ub418\uc5c8\ub358 \uc0c1\ud0dc\uc785\ub2c8\ub2e4.
|
|
||||||
fail.common.login = \ub85c\uadf8\uc778 \uc815\ubcf4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.idsearch = \uc544\uc774\ub514\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.common.pwsearch = \ube44\ubc00\ubc88\ud638\ub97c \ucc3e\uc744\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.request.msg = \uc694\uccad\ucc98\ub9ac\ub97c \uc2e4\ud328\ud558\uc600\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI User Message#
|
|
||||||
fail.user.passwordUpdate1=\ud604\uc7ac \ube44\ubc00\ubc88\ud638\uac00 \ub9de\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.user.passwordUpdate2=\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
info.user.rlnmCnfirm=\uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624.
|
|
||||||
success.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4.
|
|
||||||
fail.user.rlnmCnfirm=\ud589\uc815\uc548\uc804\ubd80\uc758 \uc8fc\ubbfc\ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
fail.user.connectFail=\uc2dc\uc2a4\ud15c \uc7a5\uc560\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.(\uc778\uc99d\uc11c\ubc84 \uc5f0\uacb0 \uc2e4\ud328)
|
|
||||||
info.user.rlnmPinCnfirm=\uacf5\uacf5 \uc544\uc774\ud540 \uc544\uc774\ub514\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2e4\uba85\ud655\uc778\uc744 \ud558\uc2ed\uc2dc\uc624.
|
|
||||||
success.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud569\ub2c8\ub2e4.
|
|
||||||
fail.user.rlnmPinCnfirm=\uacf5\uacf5\uc544\uc774\ud540\uc758 \ub4f1\ub85d\uc790\ub8cc\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
|
|
||||||
#UI Cop Message#
|
|
||||||
cop.extrlUser = \uc678\ubd80\uc0ac\uc6a9\uc790
|
|
||||||
cop.intrlUser = \ub0b4\ubd80\uc0ac\uc6a9\uc790
|
|
||||||
cop.private = \ube44\uacf5\uac1c
|
|
||||||
cop.public = \uacf5\uac1c
|
|
||||||
|
|
||||||
cop.adbkNm = \uc8fc\uc18c\ub85d\uba85
|
|
||||||
cop.othbcScope = \uacf5\uac1c\ubc94\uc704
|
|
||||||
cop.company = \ud68c\uc0ac
|
|
||||||
cop.part = \ubd80\uc11c
|
|
||||||
cop.man = \uac1c\uc778
|
|
||||||
cop.adbkUser = \uad6c\uc131\uc6d0
|
|
||||||
cop.bbsNm = \uac8c\uc2dc\ud310\uba85
|
|
||||||
cop.bbsIntrcn = \uac8c\uc2dc\ud310\uc18c\uac1c
|
|
||||||
cop.bbsTyCode = \uac8c\uc2dc\ud310 \uc720\ud615
|
|
||||||
cop.bbsAttrbCode = \uac8c\uc2dc\ud310 \uc18d\uc131
|
|
||||||
cop.replyPosblAt = \ub2f5\uc7a5\uac00\ub2a5\uc5ec\ubd80
|
|
||||||
cop.fileAtchPosblAt = \ud30c\uc77c\ucca8\ubd80\uac00\ub2a5\uc5ec\ubd80
|
|
||||||
cop.posblAtchFileNumber = \ucca8\ubd80\uac00\ub2a5\ud30c\uc77c \uc22b\uc790
|
|
||||||
cop.tmplatId = \ud15c\ud50c\ub9bf \uc815\ubcf4
|
|
||||||
cop.guestList.subject = \ubc29\uba85\ub85d \uac8c\uc2dc\uae00\uc785\ub2c8\ub2e4.
|
|
||||||
cop.nttSj = \uc81c\ubaa9
|
|
||||||
cop.nttCn = \uae00\ub0b4\uc6a9
|
|
||||||
cop.ntceBgnde = \uac8c\uc2dc\uc2dc\uc791\uc77c
|
|
||||||
cop.ntceEndde = \uac8c\uc2dc\uc885\ub8cc\uc77c
|
|
||||||
cop.ntcrNm = \uc791\uc131\uc790
|
|
||||||
cop.password = \ud328\uc2a4\uc6cc\ub4dc
|
|
||||||
cop.atchFile = \ud30c\uc77c\ucca8\ubd80
|
|
||||||
cop.guestList = \ubc29\uba85\ub85d
|
|
||||||
cop.guestListCn = \ubc29\uba85\ub85d \ub0b4\uc6a9
|
|
||||||
cop.noticeTerm = \uac8c\uc2dc\uae30\uac04
|
|
||||||
cop.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d
|
|
||||||
cop.cmmntyNm = \ucee4\ubba4\ub2c8\ud2f0\uba85
|
|
||||||
cop.cmmntyIntrcn = \ucee4\ubba4\ub2c8\ud2f0 \uc18c\uac1c
|
|
||||||
cop.cmmntyMngr = \ucee4\ubba4\ub2c8\ud2f0 \uad00\ub9ac\uc790
|
|
||||||
cop.clbOprtr = \ub3d9\ud638\ud68c \uc6b4\uc601\uc790
|
|
||||||
cop.clbIntrcn = \ub3d9\ud638\ud68c \uc18c\uac1c
|
|
||||||
cop.clbNm = \ub3d9\ud638\ud68c \uba85
|
|
||||||
cop.tmplatNm = \ud15c\ud50c\ub9bf\uba85
|
|
||||||
cop.tmplatSeCode = \ud15c\ud50c\ub9bf \uad6c\ubd84
|
|
||||||
cop.tmplatCours = \ud15c\ud50c\ub9bf\uacbd\ub85c
|
|
||||||
cop.useAt = \uc0ac\uc6a9\uc5ec\ubd80
|
|
||||||
cop.ncrdNm = \uc774\ub984
|
|
||||||
cop.cmpnyNm = \ud68c\uc0ac\uba85
|
|
||||||
cop.deptNm = \ubd80\uc11c\uba85
|
|
||||||
cop.ofcpsNm = \uc9c1\uc704
|
|
||||||
cop.clsfNm = \uc9c1\uae09
|
|
||||||
cop.emailAdres = \uc774\uba54\uc77c\uc8fc\uc18c
|
|
||||||
cop.telNo = \uc804\ud654\ubc88\ud638
|
|
||||||
cop.mbtlNum = \ud734\ub300\ud3f0\ubc88\ud638
|
|
||||||
cop.adres = \uc8fc\uc18c
|
|
||||||
cop.extrlUserAt = \uc678\ubd80\uc0ac\uc6a9\uc790\uc5ec\ubd80
|
|
||||||
cop.publicAt = \uacf5\uac1c\uc5ec\ubd80
|
|
||||||
cop.remark = \ube44\uace0
|
|
||||||
cop.trgetNm = \ucee4\ubba4\ub2c8\ud2f0/\ub3d9\ud638\ud68c \uc815\ubcf4
|
|
||||||
cop.preview = \ubbf8\ub9ac\ubcf4\uae30
|
|
||||||
|
|
||||||
cop.withdraw.msg=\ud0c8\ud1f4\ucc98\ub9ac \ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.reregist.msg=\uc7ac\uac00\uc785 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.registmanager.msg=\uc6b4\uc601\uc9c4\uc73c\ub85c \ub4f1\ub85d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.use.msg=\uc0ac\uc6a9 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.unuse.msg=\uc0ac\uc6a9\uc911\uc9c0 \ucc98\ub9ac\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
|
|
||||||
cop.delete.confirm.msg=\uc0ac\uc6a9\uc911\uc9c0\ub97c \uc120\ud0dd\ud558\uc2e4 \uacbd\uc6b0 \ub2e4\uc2dc \uc0ac\uc6a9\uc73c\ub85c \ubcc0\uacbd\uc774 \ubd88\uac00\ub2a5\ud569\ub2c8\ub2e4.
|
|
||||||
cop.ing.msg=\uc2b9\uc778\uc694\uccad \uc911\uc785\ub2c8\ub2e4.
|
|
||||||
cop.request.msg=\uac00\uc785\uc2e0\uccad\uc774 \uc815\uc0c1\uc801\uc73c\ub85c \uc694\uccad\ub418\uc5c8\uc2b5\ub2c8\ub2e4
|
|
||||||
cop.password.msg=\ud328\uc2a4\uc6cc\ub4dc\ub97c \uc785\ub825\ud574 \uc8fc\uc2ed\uc2dc\uc624.
|
|
||||||
cop.password.not.same.msg=\ud328\uc2a4\uc6cc\ub4dc\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
cop.comment.title = \ub313\uae00
|
|
||||||
cop.comment.wrterNm = \uc791\uc131\uc790
|
|
||||||
cop.comment.commentCn = \ub0b4\uc6a9
|
|
||||||
cop.comment.commentPassword = \ud328\uc2a4\uc6cc\ub4dc
|
|
||||||
|
|
||||||
cop.satisfaction.wrterNm = \uc791\uc131\uc790
|
|
||||||
cop.satisfaction.stsfdgCn = \ub0b4\uc6a9
|
|
||||||
cop.satisfaction.stsfdg = \ub9cc\uc871\ub3c4
|
|
||||||
cop.satisfaction.stsfdgPassword = \ud328\uc2a4\uc6cc\ub4dc
|
|
||||||
|
|
||||||
cop.scrap.scrapNm = \uc2a4\ud06c\ub7a9\uba85
|
|
||||||
|
|
||||||
#UI USS Message#
|
|
||||||
uss.ion.noi.ntfcSj=\uc81c\ubaa9
|
|
||||||
uss.ion.noi.ntfcCn=\ub0b4\uc6a9
|
|
||||||
uss.ion.noi.ntfcDate=\uc54c\ub9bc\uc77c\uc790
|
|
||||||
uss.ion.noi.ntfcTime=\uc54c\ub9bc\uc2dc\uac04
|
|
||||||
uss.ion.noi.ntfcHH=\uc54c\ub9bc\uc2dc\uac04
|
|
||||||
uss.ion.noi.ntfcMM=\uc54c\ub9bc\ubd84
|
|
||||||
uss.ion.noi.bhNtfcIntrvl=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9
|
|
||||||
uss.ion.noi.bhNtfcIntrvl.msg=\uc0ac\uc804\uc54c\ub9bc\uac04\uaca9 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.
|
|
||||||
uss.ion.noi.alertNtfcTime=\uc54c\ub9bc\uc77c\uc790 \ubc0f \uc2dc\uac04\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI COP Message#
|
|
||||||
cop.sms.trnsmitTelno=\ubc1c\uc2e0\uc804\ud654\ubc88\ud638
|
|
||||||
cop.sms.trnsmitCn=\uc804\uc1a1\ub0b4\uc6a9
|
|
||||||
cop.sms.recptnTelno=\uc218\uc2e0\uc804\ud654\ubc88\ud638
|
|
||||||
cop.sms.send=\uc804\uc1a1
|
|
||||||
cop.sms.addRecptn=\ucd94\uac00
|
|
||||||
cop.sms.recptnTelno.msg=\uc218\uc2e0\uc804\ud654\ubc88\ud638 \uc9c0\uc815\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
#UI sym.log Message#
|
|
||||||
sym.log.histSeCode = \uc774\ub825\uad6c\ubd84
|
|
||||||
sym.log.sysNm = \uc2dc\uc2a4\ud15c\uba85
|
|
||||||
sym.log.histCn = \uc774\ub825\ub0b4\uc6a9
|
|
||||||
sym.log.atchFile = \ucca8\ubd80\ud30c\uc77c
|
|
||||||
sym.log.atchFileList = \ucca8\ubd80\ud30c\uc77c\ubaa9\ub85d
|
|
||||||
sym.ems.receiver = \ubc1b\ub294\uc0ac\ub78c
|
|
||||||
sym.ems.title = \uc81c\ubaa9
|
|
||||||
sym.ems.content = \ubc1c\uc2e0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors#
|
|
||||||
errors.prefix=<div class="error">
|
|
||||||
errors.suffix=</div><br/>
|
|
||||||
|
|
||||||
#errors.required={0}\uc740(\ub294) \ud544\uc218 \uc785\ub825\uac12\uc785\ub2c8\ub2e4.
|
|
||||||
errors.required={0}\uc744(\ub97c) \uc785\ub825\ud574\uc8fc\uc138\uc694.
|
|
||||||
errors.minlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.maxlength={0}\uc740(\ub294) {1}\uc790 \uc774\uc0c1 \uc785\ub825\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
errors.invalid={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4.
|
|
||||||
errors.minInteger={0}\uc740(\ub294) \uc720\ud6a8\ud55c \uac12\uc774 \uc544\ub2d9\ub2c8\ub2e4. 1 \uc774\uc0c1\uc758 \uac12\uc744 \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.byte={0}\uc740(\ub294) byte\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.short={0}\uc740(\ub294) short\ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.integer={0}\uc740(\ub294) \uc815\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.long={0}\uc740(\ub294) long \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.float={0}\uc740(\ub294) \uc2e4\uc218 \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.double={0}\uc740(\ub294) double \ud0c0\uc785\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.date={0}\uc740(\ub294) \ub0a0\uc9dc \uc720\ud615\uc774 \uc544\ub2d9\ub2c8\ub2e4.
|
|
||||||
errors.range={0}\uc740(\ub294) {1}\uacfc {2} \uc0ac\uc774\uc758 \uac12\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.creditcard={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc2e0\uc6a9\uce74\ub4dc \ubc88\ud638\uc785\ub2c8\ub2e4.
|
|
||||||
errors.email={0}\uc740(\ub294) \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.ihidnum=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc8fc\ubbfc\ub4f1\ub85d\ubc88\ud638\uc785\ub2c8\ub2e4.
|
|
||||||
errors.korean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc785\ub825\ud558\uc154\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.ip=\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 IP\uc8fc\uc18c\uc785\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.password1={0}\uc740(\ub294) 8~20\uc790 \ub0b4\uc5d0\uc11c \uc785\ub825\ud574\uc57c \ud569\ub2c8\ub2e4.
|
|
||||||
errors.password2={0}\uc740(\ub294) \ud55c\uae00,\ud2b9\uc218\ubb38\uc790,\ub744\uc5b4\uc4f0\uae30\ub294 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.
|
|
||||||
errors.password3={0}\uc740(\ub294) \uc21c\ucc28\uc801\uc778 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
errors.password4={0}\uc740(\ub294) \ubc18\ubcf5\ub418\ub294 \ubb38\uc790\ub098 \uc22b\uc790\ub97c 4\uac1c\uc774\uc0c1 \uc5f0\uc18d\ud574\uc11c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
|
|
||||||
errors.notKorean={0}\uc740(\ub294) \ud55c\uae00\uc744 \uc0ac\uc6a9\ud558\uc2e4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
|
|
||||||
error.security.runtime.error = error
|
|
||||||
#Vlidator Errors- wordDicaryVO#
|
|
||||||
wordDicaryVO.wordNm=\uc6a9\uc5b4\uba85
|
|
||||||
wordDicaryVO.engNm=\uc601\ubb38\uba85
|
|
||||||
wordDicaryVO.wordDc=\uc6a9\uc5b4\uc124\uba85
|
|
||||||
wordDicaryVO.synonm=\ub3d9\uc758\uc5b4
|
|
||||||
|
|
||||||
#Vlidator Errors- cnsltManageVO#
|
|
||||||
cnsltManageVO.cnsltSj=\uc0c1\ub2f4\uc81c\ubaa9
|
|
||||||
cnsltManageVO.cnsltCn=\uc0c1\ub2f4\ub0b4\uc6a9
|
|
||||||
cnsltManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638
|
|
||||||
cnsltManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638
|
|
||||||
cnsltManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638
|
|
||||||
cnsltManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638
|
|
||||||
cnsltManageVO.wrterNm=\uc791\uc131\uc790\uba85
|
|
||||||
cnsltManageVO.managtCn=\ub2f5\ubcc0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- siteManageVO#
|
|
||||||
siteManageVO.siteNm=\uc0ac\uc774\ud2b8\uba85
|
|
||||||
siteManageVO.siteUrl=\uc0ac\uc774\ud2b8 URL
|
|
||||||
siteManageVO.siteDc=\uc0ac\uc774\ud2b8\uc124\uba85
|
|
||||||
siteManageVO.siteThemaClCode=\uc0ac\uc774\ud2b8\uc8fc\uc81c\ubd84\ub958
|
|
||||||
siteManageVO.actvtyAt=\ud65c\uc131\uc5ec\ubd80
|
|
||||||
siteManageVO.useAt=\uc0ac\uc6a9\uc5ec\ubd80
|
|
||||||
|
|
||||||
#Vlidator Errors- recomendSiteManageVO#
|
|
||||||
recomendSiteManageVO.recomendSiteNm=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uba85
|
|
||||||
recomendSiteManageVO.recomendSiteUrl=\ucd94\ucc9c\uc0ac\uc774\ud2b8 URL
|
|
||||||
recomendSiteManageVO.recomendSiteDc=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc124\uba85
|
|
||||||
recomendSiteManageVO.recomendResnCn=\ucd94\ucc9c\uc0ac\uc774\ud2b8\uc2b9\uc778\uc0ac\uc720
|
|
||||||
recomendSiteManageVO.confmDe=\uc2b9\uc778\uc77c\uc790
|
|
||||||
|
|
||||||
#Vlidator Errors- hpcmManageVO#
|
|
||||||
hpcmManageVO.hpcmSeCode=\ub3c4\uc6c0\ub9d0\uad6c\ubd84
|
|
||||||
hpcmManageVO.hpcmDf=\ub3c4\uc6c0\ub9d0\uc815\uc758
|
|
||||||
hpcmManageVO.hpcmDc=\ub3c4\uc6c0\ub9d0\uc124\uba85
|
|
||||||
|
|
||||||
#Vlidator Errors- newsManageVO#
|
|
||||||
newsManageVO.newsSj=\ub274\uc2a4\uc81c\ubaa9
|
|
||||||
newsManageVO.newsCn=\ub274\uc2a4\ub0b4\uc6a9
|
|
||||||
newsManageVO.ntceDe=\uac8c\uc2dc\uc77c\uc790
|
|
||||||
|
|
||||||
#Vlidator Errors- faqManageVO#
|
|
||||||
faqManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9
|
|
||||||
faqManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9
|
|
||||||
faqManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- stplatManageVO#
|
|
||||||
stplatManageVO.useStplatNm=\uc774\uc6a9\uc57d\uad00\uba85
|
|
||||||
stplatManageVO.useStplatCn=\uc774\uc6a9\uc57d\uad00\ub0b4\uc6a9
|
|
||||||
stplatManageVO.infoProvdAgreCn=\uc815\ubcf4\uc81c\uacf5\ub3d9\uc758\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- cpyrhtPrtcPolicyVO#
|
|
||||||
cpyrhtPrtcPolicyVO.cpyrhtPrtcPolicyCn=\uc800\uc791\uad8c\ubcf4\ud638\uc815\ucc45\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- qnaManageVO#
|
|
||||||
qnaManageVO.qestnSj=\uc9c8\ubb38\uc81c\ubaa9
|
|
||||||
qnaManageVO.qestnCn=\uc9c8\ubb38\ub0b4\uc6a9
|
|
||||||
qnaManageVO.writngPassword=\uc791\uc131\ube44\ubc00\ubc88\ud638
|
|
||||||
qnaManageVO.areaNo=\uc9c0\uc5ed\ubc88\ud638
|
|
||||||
qnaManageVO.middleTelno=\uc911\uac04\uc804\ud654\ubc88\ud638
|
|
||||||
qnaManageVO.endTelno=\ub05d\uc804\ud654\ubc88\ud638
|
|
||||||
qnaManageVO.wrterNm=\uc791\uc131\uc790\uba85
|
|
||||||
qnaManageVO.answerCn=\ub2f5\ubcc0\ub0b4\uc6a9
|
|
||||||
|
|
||||||
#Vlidator Errors- ReprtStatsVO#
|
|
||||||
sts.reprtId = \ubcf4\uace0\uc11cID
|
|
||||||
sts.title = \ubcf4\uace0\uc11c\uba85
|
|
||||||
sts.category = \ubcf4\uace0\uc11c\uc720\ud615
|
|
||||||
sts.status = \uc9c4\ud589\uc0c1\ud0dc
|
|
||||||
sts.regDate = \ub4f1\ub85d\uc77c\uc2dc
|
|
||||||
|
|
||||||
#Rest day messages#
|
|
||||||
sym.cal.restDay = \ud734\uc77c\uc77c\uc790
|
|
||||||
sym.cal.restName = \ud734\uc77c\uba85
|
|
||||||
sym.cal.restDetail = \ud734\uc77c\uc124\uba85
|
|
||||||
sym.cal.restCategory = \ud734\uc77c\uad6c\ubd84
|
|
||||||
|
|
||||||
image.errorBg = \uc624\ub958\uc774\ubbf8\uc9c0
|
|
||||||
comUssUmt.userManageRegist.name=\ud68c\uc6d0\uc774\ub984
|
|
||||||
comUssUmt.userManageRegist.pass=\ube44\ubc00\ubc88\ud638
|
|
||||||
comUssUmt.userManageRegist.passConfirm=\ube44\ubc00\ubc88\ud638\ud655\uc778
|
|
||||||
comUssUmt.userManageRegist.passHit=\ube44\ubc00\ubc88\ud638\ud78c\ud2b8
|
|
||||||
comUssUmt.userManageRegist.passOk=\ube44\ubc00\ubc88\ud638\uc815\ub2f5
|
|
||||||
comUssUmt.userManageRegist.saxTypeCode=\uc131\ubcc4
|
|
||||||
comUssUmt.userManageRegist.photo=\uc0ac\uc9c4
|
|
||||||
comUssUmt.userManageRegist.file=\ud30c\uc77c
|
|
||||||
|
|
||||||
comUssUmt.userManageRegist.birthDay=\uc0dd\ub144\uc6d4\uc77c
|
|
||||||
comUssUmt.userManageRegist.dept=\ubd80\uc11c
|
|
||||||
comUssUmt.userManageRegist.position=\uc9c1\ucc45
|
|
||||||
|
|
||||||
comUssUmt.userManageRegist.emailYN=\uc774\uba54\uc77c \uc218\uc2e0\uc5ec\ubd80
|
|
||||||
comUssUmt.userManageRegist.smsYN=SMS \uc218\uc2e0\uc5ec\ubd80
|
|
||||||
comUssUmt.userManageRegist.autoReject=\uc790\ub3d9\ub4f1\ub85d\ubc29\uc9c0
|
|
||||||
|
|
||||||
comUssUmt.userManageRegist.tel=\uc804\ud654\ubc88\ud638
|
|
||||||
comUssUmt.userManageRegist.fax=\ud329\uc2a4\ubc88\ud638
|
|
||||||
comUssUmt.userManageRegist.phone=\ud578\ub4dc\ud3f0\ubc88\ud638
|
|
||||||
comUssUmt.userManageRegist.email=\uc774\uba54\uc77c\uc8fc\uc18c
|
|
||||||
comUssUmt.userManageRegist.post=\uc6b0\ud3b8\ubc88\ud638
|
|
||||||
comUssUmt.userManageRegist.addr=\uc8fc\uc18c
|
|
||||||
comUssUmt.userManageRegist.addrDetail=\uc0c1\uc138\uc8fc\uc18c
|
|
||||||
comUssUmt.userManageRegist.groupId=\uadf8\ub8f9\uc544\uc774\ub514
|
|
||||||
comUssUmt.userManageRegist.status=\uc77c\ubc18\ud68c\uc6d0\uc0c1\ud0dc\ucf54\ub4dc
|
|
||||||
comUssUmt.userManageRegistBtn.idSearch=\uc911\ubcf5\uc544\uc774\ub514 \uac80\uc0c9
|
|
||||||
|
|
||||||
comUssUmt.userManageRegistModal.title=\uc544\uc774\ub514 \uc911\ubcf5 \ud655\uc778
|
|
||||||
comUssUmt.userManageRegistModal.userIsId=\uc0ac\uc6a9\ud560\uc544\uc774\ub514
|
|
||||||
comUssUmt.userManageRegistModal.initStatus=\uacb0\uacfc : \uc911\ubcf5\ud655\uc778\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624.
|
|
||||||
|
|
||||||
comUssUmt.userManageRegistModal.result=\uacb0\uacfc
|
|
||||||
comUssUmt.userManageRegistModal.useMsg=\ub294 \uc0ac\uc6a9\ud560\uc218 \uc5c6\ub294 \uc544\uc774\ub514\uc785\ub2c8\ub2e4.
|
|
||||||
comUssUmt.userManageRegistModal.notUseMsg=\ub294 \uc0ac\uc6a9\uac00\ub2a5\ud55c \uc544\uc774\ub514\uc785\ub2c8\ub2e4.
|
|
||||||
comUssUmt.userManageRegistModal.noIdMsg=\uc0ac\uc6a9\uc774 \ubd88\uac00\ub2a5\ud55c \uc544\uc774\ub514 \uc785\ub2c8\ub2e4
|
|
||||||
|
|
||||||
comUssUmt.userManageModifyBtn.passwordChange=\ube44\ubc00\ubc88\ud638\ubcc0\uacbd
|
|
||||||
|
|
||||||
comUssUmt.userManagePasswordUpdt.title=\ube44\ubc00\ubc88\ud638\ubcc0\uacbd
|
|
||||||
comUssUmt.userManagePasswordUpdt.id=\uc77c\ubc18\ud68c\uc6d0\uc544\uc774\ub514
|
|
||||||
comUssUmt.userManagePasswordUpdt.oldPass=\uae30\uc874 \ube44\ubc00\ubc88\ud638
|
|
||||||
comUssUmt.userManagePasswordUpdt.pass=\ube44\ubc00\ubc88\ud638
|
|
||||||
comUssUmt.userManagePasswordUpdt.passConfirm=\ube44\ubc00\ubc88\ud638\ud655\uc778
|
|
||||||
#\ud68c\uc6d0\uac00\uc785\uad00\ub9ac \ucd94\uac00
|
|
||||||
comUssUmt.userManage.title =\ud68c\uc6d0\uac00\uc785
|
|
||||||
comUssUmt.userManageRegistModal.title=\uc544\uc774\ub514 \uc911\ubcf5 \ud655\uc778
|
|
||||||
comUssUmt.userManageRegistModal.initStatus=\uc911\ubcf5\ud655\uc778\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624.
|
|
||||||
title.create=\uc0dd\uc131
|
|
||||||
common.summary.list=\ub9ac\uc2a4\ud2b8
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,74 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- 내부업무의 기능 작동과정에서 Exception 발생시 후처리를 위한 AOP설정 -->
|
|
||||||
<aop:config>
|
|
||||||
<aop:pointcut id="serviceMethod" expression="execution(* itn.let..impl.*Impl.*(..)) or execution(* itn.com..impl.*Impl.*(..))" />
|
|
||||||
|
|
||||||
<aop:aspect ref="exceptionTransfer">
|
|
||||||
<aop:after-throwing throwing="exception" pointcut-ref="serviceMethod" method="transfer" />
|
|
||||||
</aop:aspect>
|
|
||||||
</aop:config>
|
|
||||||
|
|
||||||
<!-- 파라메터 로그 찍기 -->
|
|
||||||
<!--
|
|
||||||
<bean id="loggerAspect" class="itn.com.cmm.aspect.LoggerAspect"></bean>
|
|
||||||
<aop:config>
|
|
||||||
<aop:pointcut expression="execution(* itn..*Controller.*(..))" id="loggerPointCut"/>
|
|
||||||
<aop:aspect ref="loggerAspect">
|
|
||||||
<aop:around pointcut-ref="loggerPointCut" method="methodLogger"/>
|
|
||||||
</aop:aspect>
|
|
||||||
</aop:config>
|
|
||||||
-->
|
|
||||||
<!-- Exception 발생시 후처리를 위해 표준프레임워크 실행환경의 ExceptionTransfer를 활용하도록 설정-->
|
|
||||||
<bean id="exceptionTransfer" class="egovframework.rte.fdl.cmmn.aspect.ExceptionTransfer">
|
|
||||||
<property name="exceptionHandlerService">
|
|
||||||
<list>
|
|
||||||
<ref bean="defaultExceptionHandleManager" />
|
|
||||||
<ref bean="otherExceptionHandleManager" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Exception 발생에 대한 기본Excpton처리를 위해 표준프레임워크 실행환경의 DefaultExceptionTransfer를 활용하도록 설정-->
|
|
||||||
<bean id="defaultExceptionHandleManager" class="egovframework.rte.fdl.cmmn.exception.manager.DefaultExceptionHandleManager">
|
|
||||||
<property name="reqExpMatcher">
|
|
||||||
<ref bean="antPathMater"/>
|
|
||||||
</property>
|
|
||||||
<property name="patterns">
|
|
||||||
<list>
|
|
||||||
<value>**service.impl.*</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="handlers">
|
|
||||||
<list>
|
|
||||||
<ref bean="egovHandler" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Exception 발생에 대한 기타Excpton처리를 위해 표준프레임워크 실행환경의 DefaultExceptionTransfer를 활용하도록 설정-->
|
|
||||||
<bean id="otherExceptionHandleManager" class="egovframework.rte.fdl.cmmn.exception.manager.DefaultExceptionHandleManager">
|
|
||||||
<property name="reqExpMatcher">
|
|
||||||
<ref bean="antPathMater"/>
|
|
||||||
</property>
|
|
||||||
<property name="patterns">
|
|
||||||
<list>
|
|
||||||
<value>**service.impl.*</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="handlers">
|
|
||||||
<list>
|
|
||||||
<ref bean="otherHandler" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- 템플릿 내에서 Exception 발생시 실제 처리를 위한 클래스 설정-->
|
|
||||||
<bean id="egovHandler" class="itn.com.cmm.EgovComExcepHndlr" />
|
|
||||||
<bean id="otherHandler" class="itn.com.cmm.EgovComOthersExcepHndlr" />
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- Notice Change History Aspect -->
|
|
||||||
<bean id="bbsChgHst" class="itn.let.cop.bbs.service.EgovBBSChgHstAspect" />
|
|
||||||
|
|
||||||
<aop:config>
|
|
||||||
<aop:aspect id="bbsChgHstAspect" ref="bbsChgHst">
|
|
||||||
<aop:after-returning returning="returnVal" pointcut="execution(public * itn.let.cop.bbs.service.EgovBBSManageService.insertBoardArticle(..))
|
|
||||||
|| execution(public * itn.let.cop.bbs.service.EgovBBSManageService.updateBoardArticle(..))
|
|
||||||
|| execution(public * itn.let.cop.bbs.service.EgovBBSManageService.deleteBoardArticle(..))" method="insertBBSChgHst" />
|
|
||||||
</aop:aspect>
|
|
||||||
</aop:config>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,266 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:context="http://www.springframework.org/schema/context"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- component-scan 설정-->
|
|
||||||
<context:component-scan base-package="egovframework, itn">
|
|
||||||
<!-- <context:component-scan base-package="itn"> -->
|
|
||||||
<!-- <context:include-filter type="annotation" expression="org.springframework.stereotype.Service"/>
|
|
||||||
<context:include-filter type="annotation" expression="org.springframework.stereotype.Repository"/> -->
|
|
||||||
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
|
|
||||||
</context:component-scan>
|
|
||||||
|
|
||||||
<!-- 메시지소스빈 설정 -->
|
|
||||||
<bean id="egovMessageSource" class="itn.com.cmm.EgovMessageSource">
|
|
||||||
<property name="reloadableResourceBundleMessageSource">
|
|
||||||
<ref bean="messageSource" />
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- 프로퍼티 파일 위치 설정 -->
|
|
||||||
<bean id="messageSource" class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
|
|
||||||
<property name="basenames">
|
|
||||||
<list>
|
|
||||||
<value>classpath:/egovframework/message/com/message-common</value>
|
|
||||||
<value>classpath:/egovframework/rte/fdl/idgnr/messages/idgnr</value>
|
|
||||||
<value>classpath:/egovframework/rte/fdl/property/messages/properties</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="cacheSeconds">
|
|
||||||
<value>60</value>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 LeveaTrace를 활용하도록 설정 -->
|
|
||||||
<bean id="leaveaTrace" class="egovframework.rte.fdl.cmmn.trace.LeaveaTrace">
|
|
||||||
<property name="traceHandlerServices">
|
|
||||||
<list>
|
|
||||||
<ref bean="traceHandlerService" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
<!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 DefaultTrace Handle Manager 를 활용하도록 설정 -->
|
|
||||||
<bean id="traceHandlerService" class="egovframework.rte.fdl.cmmn.trace.manager.DefaultTraceHandleManager">
|
|
||||||
<property name="reqExpMatcher">
|
|
||||||
<ref bean="antPathMater" />
|
|
||||||
</property>
|
|
||||||
<property name="patterns">
|
|
||||||
<list>
|
|
||||||
<value>*</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="handlers">
|
|
||||||
<list>
|
|
||||||
<ref bean="defaultTraceHandler" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 AntPathMatcher 를 활용하도록 설정 -->
|
|
||||||
<bean id="antPathMater" class="org.springframework.util.AntPathMatcher" />
|
|
||||||
<!-- Exception 발생시 후처리용 별도작업을 위해 실행환경의 DefaultTraceHandler 를 활용하도록 설정 egovframework.rte.fdl.cmmn.trace.handler.DefaultTraceHandler -->
|
|
||||||
<bean id="defaultTraceHandler" class="itn.com.cmm.EgovComTraceHandler" />
|
|
||||||
|
|
||||||
<!-- For Pagination Tag 설정-->
|
|
||||||
<bean id="imageRenderer" class="itn.com.cmm.ImagePaginationRenderer"/>
|
|
||||||
<bean id="imageRendererWeb" class="itn.com.cmm.ImagePaginationRendererWeb"/>
|
|
||||||
<bean id="paginationManager" class="egovframework.rte.ptl.mvc.tags.ui.pagination.DefaultPaginationManager">
|
|
||||||
<property name="rendererType">
|
|
||||||
<map>
|
|
||||||
<entry key="image" value-ref="imageRenderer"/>
|
|
||||||
<entry key="imageWeb" value-ref="imageRendererWeb"/>
|
|
||||||
</map>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- MULTIPART RESOLVERS -->
|
|
||||||
<!-- regular spring resolver -->
|
|
||||||
<bean id="spring.RegularCommonsMultipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
|
|
||||||
<property name="maxUploadSize" value="100000000" />
|
|
||||||
<property name="maxInMemorySize" value="100000000" />
|
|
||||||
</bean>
|
|
||||||
<!-- custom multi file resolver -->
|
|
||||||
<bean id="local.MultiCommonsMultipartResolver" class="itn.com.cmm.web.EgovMultipartResolver">
|
|
||||||
<property name="maxUploadSize" value="100000000" />
|
|
||||||
<property name="maxInMemorySize" value="100000000" />
|
|
||||||
</bean>
|
|
||||||
<!-- choose one from above and alias it to the name Spring expects -->
|
|
||||||
<!-- alias name="local.MultiCommonsMultipartResolver" alias="multipartResolver" /-->
|
|
||||||
<alias name="spring.RegularCommonsMultipartResolver" alias="multipartResolver" />
|
|
||||||
|
|
||||||
<bean id="searchService" class="itn.let.solr.search.impl.SearchServiceImpl">
|
|
||||||
<property name="introFieldSet"> <!-- 재단소개 -->
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNo</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>registDt</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="policyFieldSet"> <!-- 정책연구 -->
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNo</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>registDt</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="safetyFieldSet"> <!-- 안전교육 -->
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNo</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>registDt</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="noticeFieldSet"> <!-- 알림정보 -->
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNo</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>registDt</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="communityFieldSet"> <!-- 소통참여 -->
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNo</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>registDt</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="infoFieldSet"> <!-- 정보공개 -->
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNo</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>registDt</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<property name="fileFieldSet">
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>atchFileId</value>
|
|
||||||
<value>fileSn</value>
|
|
||||||
<value>orignlFileNm</value>
|
|
||||||
<value>fileStreCours</value>
|
|
||||||
<value>streFileNm</value>
|
|
||||||
<value>fileExtsn</value>
|
|
||||||
<value>fileSize</value>
|
|
||||||
<value>nttSj</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>bbsId</value>
|
|
||||||
<value>bbsNm</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>url</value>
|
|
||||||
<value>author</value>
|
|
||||||
<value>text</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
<property name="boardFieldSet">
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>bbsNm</value>
|
|
||||||
<value>bbsId</value>
|
|
||||||
<value>nttId</value>
|
|
||||||
<value>nttSj</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>url</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
<property name="webpageFieldSet">
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>bbsNm</value>
|
|
||||||
<value>bbsId</value>
|
|
||||||
<value>nttId</value>
|
|
||||||
<value>nttSj</value>
|
|
||||||
<value>text</value>
|
|
||||||
<value>frstRegistPnttm</value>
|
|
||||||
<value>url</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="itn_BoardFieldSet">
|
|
||||||
<set>
|
|
||||||
<value>id</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>author</value>
|
|
||||||
<value>text</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
<property name="itn_ContentFieldSet">
|
|
||||||
<set>
|
|
||||||
<value>count</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
<value>url</value>
|
|
||||||
<value>category</value>
|
|
||||||
<value>menuCours</value>
|
|
||||||
<value>menuNm</value>
|
|
||||||
</set>
|
|
||||||
</property>
|
|
||||||
|
|
||||||
</bean>
|
|
||||||
</beans>
|
|
||||||
@ -1,32 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:egov-crypto="http://www.egovframe.go.kr/schema/egov-crypto"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.egovframe.go.kr/schema/egov-crypto http://www.egovframe.go.kr/schema/egov-crypto/egov-crypto-3.8.xsd">
|
|
||||||
<!--
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:egov-crypto="http://maven.egovframe.go.kr/schema/egov-crypto"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://maven.egovframe.go.kr/schema/egov-crypto http://maven.egovframe.go.kr/schema/egov-crypto/egov-crypto-3.10.0.xsd">
|
|
||||||
-->
|
|
||||||
|
|
||||||
|
|
||||||
<!--
|
|
||||||
initial : globals.properties 연계 Url, UserName, Password 값 로드 여부(설정값 : true, false)
|
|
||||||
crypto : 계정 암호화 여부(설정값 : true, false)
|
|
||||||
algorithm : 계정 암호화 알고리즘
|
|
||||||
algorithmKey : 계정 암호화키 키
|
|
||||||
cryptoBlockSize : 계정 암호화키 블록사이즈
|
|
||||||
cryptoPropertyLocation : 설정파일 암복호화 경로 (선택) 기본값은 'classpath:/egovframework/egovProps/globals.properties'
|
|
||||||
-->
|
|
||||||
<egov-crypto:config id="egovCryptoConfig"
|
|
||||||
initial="false"
|
|
||||||
crypto="false"
|
|
||||||
algorithm="SHA-256"
|
|
||||||
algorithmKey="egovframe"
|
|
||||||
algorithmKeyHash="gdyYs/IZqY86VcWhT8emCYfqY1ahw2vtLG+/FzNqtrQ="
|
|
||||||
cryptoBlockSize="1024"
|
|
||||||
cryptoPropertyLocation="classpath:/egovframework/egovProps/globals.properties"
|
|
||||||
/>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,96 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- 환경설정 기본정보를 globals.properties 에서 참조하도록 propertyConfigurer 설정 -->
|
|
||||||
<bean id="propertyConfigurer"
|
|
||||||
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
||||||
<property name="locations">
|
|
||||||
<list>
|
|
||||||
<value>classpath:/egovframework/egovProps/globals_#{systemProperties['spring.profiles.active']}.properties</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- datasource 설정(propertyConfigurer 활용) -->
|
|
||||||
<alias name="dataSource-${Globals.DbType}" alias="dataSource" />
|
|
||||||
<alias name="dataSource-${Globals.DbType}" alias="egov.dataSource" />
|
|
||||||
|
|
||||||
<!-- mysql-->
|
|
||||||
<bean id="dataSource-mysql-spied" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="${Globals.DriverClassName}"/>
|
|
||||||
<property name="url" value="${Globals.Url}" />
|
|
||||||
<property name="username" value="${Globals.UserName}"/>
|
|
||||||
<property name="password" value="${Globals.Password}"/>
|
|
||||||
<property name="initialSize" value="30"/>
|
|
||||||
<property name="maxActive" value="100"/>
|
|
||||||
<property name="maxWait" value="-1"/>
|
|
||||||
<!-- 특정 시간마다 validationQuery를 실행 셋팅 시작 -->
|
|
||||||
<property name="validationQuery" value="select 1"/>
|
|
||||||
<property name="testWhileIdle" value="true"/>
|
|
||||||
<property name="timeBetweenEvictionRunsMillis" value="7200000"/>
|
|
||||||
<!-- 특정 시간마다 validationQuery를 실행 셋팅 끝 -->
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="dataSource-mysql" class="net.sf.log4jdbc.Log4jdbcProxyDataSource">
|
|
||||||
<constructor-arg ref="dataSource-mysql-spied" />
|
|
||||||
<property name="logFormatter">
|
|
||||||
<bean class="itn.let.utl.log4j.Log4JdbcCustomFormatter">
|
|
||||||
<property name="loggingType" value="MULTI_LINE" />
|
|
||||||
<property name="margin" value="8" />
|
|
||||||
<property name="sqlPrefix" value="SQL:" />
|
|
||||||
</bean>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Oracle -->
|
|
||||||
<bean id="dataSource-oracle" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver"/>
|
|
||||||
<property name="url" value="jdbc:oracle:thin:@192.168.0.15:1521:ORCL" />
|
|
||||||
<property name="username" value="KCDF_TEMP"/>
|
|
||||||
<property name="password" value="kcdf"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- kcdf migration db -->
|
|
||||||
<bean id="dataSource-kcdf" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="core.log.jdbc.driver.MysqlDriver"/>
|
|
||||||
<property name="url" value="jdbc:mysql://121.163.40.153:3306/kcdf_new" />
|
|
||||||
<property name="username" value="kcdf_new"/>
|
|
||||||
<property name="password" value="kcdf_new"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Oracle -->
|
|
||||||
<!-- 기존소스 -->
|
|
||||||
<!-- <bean id="dataSource-oracle" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="${Globals.DriverClassName}"/>
|
|
||||||
<property name="url" value="${Globals.Url}" />
|
|
||||||
<property name="username" value="${Globals.UserName}"/>
|
|
||||||
<property name="password" value="${Globals.Password}"/>
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
<!-- Altibase -->
|
|
||||||
<bean id="dataSource-altibase" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="${Globals.DriverClassName}"/>
|
|
||||||
<property name="url" value="${Globals.Url}" />
|
|
||||||
<property name="username" value="${Globals.UserName}"/>
|
|
||||||
<property name="password" value="${Globals.Password}"/>
|
|
||||||
<property name="maxActive" value="10"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- Tibero -->
|
|
||||||
<bean id="dataSource-tibero" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="${Globals.DriverClassName}"/>
|
|
||||||
<property name="url" value="${Globals.Url}" />
|
|
||||||
<property name="username" value="${Globals.UserName}"/>
|
|
||||||
<property name="password" value="${Globals.Password}"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- cubrid -->
|
|
||||||
<bean id="dataSource-cubrid" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
|
|
||||||
<property name="driverClassName" value="${Globals.DriverClassName}"/>
|
|
||||||
<property name="url" value="${Globals.Url}" />
|
|
||||||
<property name="username" value="${Globals.UserName}"/>
|
|
||||||
<property name="password" value="${Globals.Password}"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:p="http://www.springframework.org/schema/p"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
||||||
|
|
||||||
<bean id="excelZipService" class="egovframework.rte.fdl.excel.impl.EgovExcelServiceImpl">
|
|
||||||
<property name="mapClass" value="itn.let.sym.ccm.zip.service.impl.EgovCcmExcelZipMapping" />
|
|
||||||
<property name="sqlMapClient" ref="sqlMapClient" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
File diff suppressed because it is too large
Load Diff
@ -1,60 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:p="http://www.springframework.org/schema/p"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- 일반용
|
|
||||||
<bean id="mntrngMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"
|
|
||||||
p:host="STMP서버주소"
|
|
||||||
p:username="아이디"
|
|
||||||
p:password="비밀번호" />
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- 메일 연동 인터페이스에서 첨부파일 미사용 -->
|
|
||||||
<!-- <bean id="EMSMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"
|
|
||||||
p:host="STMP서버주소"
|
|
||||||
p:port="465"
|
|
||||||
p:protocol="smtps"
|
|
||||||
p:username="아이디"
|
|
||||||
p:password="비밀번호">
|
|
||||||
<property name="javaMailProperties">
|
|
||||||
<props>
|
|
||||||
<prop key="mail.smtps.auth">true</prop>
|
|
||||||
<prop key="mail.smtps.startls.enable">true</prop>
|
|
||||||
<prop key="mail.smtps.debug">true</prop>
|
|
||||||
</props>
|
|
||||||
</property>
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
<!-- 테스트 네이버 -->
|
|
||||||
<bean id="egovMultiPartEmail" class="itn.com.cmm.EgovMultiPartEmail"
|
|
||||||
p:host="smtp.naver.com"
|
|
||||||
p:port="465"
|
|
||||||
p:id="dlwldn1024"
|
|
||||||
p:password="wldncjswo"
|
|
||||||
p:senderName="이지우"
|
|
||||||
p:emailAddress="dlwldn1024@naver.com" />
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 모니터링 서비스에서 사용 gmail, hanmail 용 -->
|
|
||||||
<!-- <bean id="mntrngMailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"
|
|
||||||
p:host="smtp.gmail.com"
|
|
||||||
p:port="465"
|
|
||||||
p:protocol="smtps"
|
|
||||||
p:username="아이디"
|
|
||||||
p:password="비밀번호">
|
|
||||||
<property name="javaMailProperties">
|
|
||||||
<props>
|
|
||||||
<prop key="mail.smtps.auth">true</prop>
|
|
||||||
<prop key="mail.smtps.startls.enable">true</prop>
|
|
||||||
<prop key="mail.smtps.debug">true</prop>
|
|
||||||
</props>
|
|
||||||
</property>
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
<!-- <bean id="mntrngMessage" class="org.springframework.mail.SimpleMailMessage"
|
|
||||||
p:from="SYSTEM < 아이디@gmail.com >"
|
|
||||||
p:subject="{모니터링종류} 상태통보."
|
|
||||||
p:text="* {모니터링종류} 상태통보. {에러내용}"/> -->
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,27 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/util
|
|
||||||
http://www.springframework.org/schema/util/spring-util-3.0.xsd"
|
|
||||||
xmlns:util="http://www.springframework.org/schema/util" >
|
|
||||||
|
|
||||||
<!-- 프로퍼티 정보 설정 -->
|
|
||||||
<bean name="propertiesService" class="egovframework.rte.fdl.property.impl.EgovPropertyServiceImpl" destroy-method="destroy">
|
|
||||||
<property name="properties">
|
|
||||||
<map>
|
|
||||||
<entry key="pageUnit" value="10"/>
|
|
||||||
<entry key="pageSize" value="10"/>
|
|
||||||
<entry key="posblAtchFileSize" value="5242880"/>
|
|
||||||
<entry key="posblResveThumbAtchFileNum" value="1"/>
|
|
||||||
<entry key="posblResveImgAtchFileNum" value="3"/>
|
|
||||||
<entry key="posblResvePortpolioAtchFileNum" value="3"/>
|
|
||||||
<!-- <entry key="Globals.fileStorePath" value="/user/file/sht/"/>
|
|
||||||
<entry key="Globals.addedOptions" value="false"/> -->
|
|
||||||
<entry key="Globals.fileStorePath" value="/usr/local/tomcat/file/sht/"/>
|
|
||||||
<entry key="Globals.resveFileStorePath" value="/usr/local/tomcat/file/resve/"/>
|
|
||||||
<entry key="Globals.addedOptions" value="false"/>
|
|
||||||
</map>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
<util:properties id="globalSettings" location="classpath:/egovframework/egovProps/globals_#{systemProperties['spring.profiles.active']}.properties" />
|
|
||||||
</beans>
|
|
||||||
@ -1,223 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- -->
|
|
||||||
<!--
|
|
||||||
문자온 batch/backup 정보(신규 batch/backup시 참고 바랍니다.)
|
|
||||||
|
|
||||||
0.가비아 (bardos-fd 의 경우 백업 프로세스)
|
|
||||||
#DATABACKUP
|
|
||||||
- 백업정책 : full 백업 월요일 04시
|
|
||||||
- 백업경로 : /nas
|
|
||||||
- 백업주기: 주1회 전체백업, 매일 증분백업(21일보관)
|
|
||||||
|
|
||||||
#DBBACKUP
|
|
||||||
- 백업정책 : 매일 04시
|
|
||||||
- 백업주기 : 매일 전체백업(14일보관)
|
|
||||||
|
|
||||||
#DBDUMP
|
|
||||||
- 백업정책 : 매일 03시10분
|
|
||||||
- 백업주기 : 매일 전체백업
|
|
||||||
|
|
||||||
2-1.문자발송일별통계집계
|
|
||||||
매시간 43분47초(14일전)(3시제외)
|
|
||||||
2-2.문자발송일별통계집계(매일 한번)
|
|
||||||
매일 3시30분47초(전체)
|
|
||||||
|
|
||||||
|
|
||||||
3-1.문자전송순위통계집계
|
|
||||||
매시간 53분47초(14일전)(4시제외)
|
|
||||||
3-2.문자전송순위통계집계(매일 한번)
|
|
||||||
매일 4시30분47초(전체)
|
|
||||||
|
|
||||||
4.mj_msg_data 백업
|
|
||||||
매년 11월 22일 4시38분
|
|
||||||
(작년 데이터로 테이블을 만들어 백업하고, 3년전 데이터는 삭제 처리함)
|
|
||||||
ex)2023-11-22에는 2022년 데이터를 백업한 mj_msg_data_backup_2022 생성 후
|
|
||||||
mj_msg_data 테이블에서 2020년 데이터 삭제 처리함
|
|
||||||
4시38분~7시
|
|
||||||
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- 1 -->
|
|
||||||
<!-- 시스템 로그 요약 -->
|
|
||||||
<bean id="sysLogging" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="egovSysLogScheduling" />
|
|
||||||
<property name="targetMethod" value="sysLogSummary" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- 시스템 로그 요약 트리거 -->
|
|
||||||
<bean id="sysLogTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="sysLogging" />
|
|
||||||
<!-- 시작하고 1분후에 실행한다. (milisecond) 60000 -->
|
|
||||||
<property name="startDelay" value="30000" />
|
|
||||||
<!-- 매 24시간마다 실행한다.864000000 (milisecond) -->
|
|
||||||
<property name="repeatInterval" value="864000000" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 2-1 -->
|
|
||||||
<!-- 문자발송일별통계집계 -->
|
|
||||||
<bean id="SttstMsgBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="sttstMsgScheduling" />
|
|
||||||
<property name="targetMethod" value="mjSttstMsgSmmmary" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="SttstMsgBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="SttstMsgBean" />
|
|
||||||
<!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 -->
|
|
||||||
<property name="cronExpression" value="47 43 0-2,4-23 * * ?" />
|
|
||||||
<!-- <property name="cronExpression" value="38 * * * * ?" /> -->
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 2-2 -->
|
|
||||||
<!-- 문자발송일별통계집계(하루한번) -->
|
|
||||||
<bean id="SttstMsgDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="sttstMsgScheduling" />
|
|
||||||
<property name="targetMethod" value="mjSttstMsgDaySmmmary" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="SttstMsgDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="SttstMsgDayBean" />
|
|
||||||
<!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 -->
|
|
||||||
<property name="cronExpression" value="47 30 3 * * ?" />
|
|
||||||
<!-- <property name="cronExpression" value="38 * * * * ?" /> -->
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 3-1 -->
|
|
||||||
<!-- 문자전송순위통계집계 -->
|
|
||||||
<bean id="SttstMsgRankBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="sttstMsgScheduling" />
|
|
||||||
<property name="targetMethod" value="mjSttstMsgRankSmmmary" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="SttstMsgRankBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="SttstMsgRankBean" />
|
|
||||||
<!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 -->
|
|
||||||
<property name="cronExpression" value="47 53 0-3,5-23 * * ?" />
|
|
||||||
<!-- <property name="cronExpression" value="8 * * * * ?" /> -->
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 3-2 -->
|
|
||||||
<!-- 문자전송순위통계집계(하루한번) -->
|
|
||||||
<bean id="SttstMsgRankDayBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="sttstMsgScheduling" />
|
|
||||||
<property name="targetMethod" value="mjSttstMsgRankDaySmmmary" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="SttstMsgRankDayBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="SttstMsgRankDayBean" />
|
|
||||||
<!-- 매시간 43분 47초 마다 일별 문자 발송 데이터 집계 -->
|
|
||||||
<property name="cronExpression" value="47 30 4 * * ?" />
|
|
||||||
<!-- <property name="cronExpression" value="8 * * * * ?" /> -->
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- 14 -->
|
|
||||||
<!-- mj_msg_data 백업 -->
|
|
||||||
<bean id="MjMsgDataBackupBean" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="tableBackupMsgScheduling" />
|
|
||||||
<property name="targetMethod" value="mjMsgDataBackup" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="MjMsgDataBackupBeanTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="MjMsgDataBackupBean" />
|
|
||||||
<!-- 매년 3,11월 22일 4시38분 마다 작년도 테이블 백업 -->
|
|
||||||
<property name="cronExpression" value="0 38 4 22 11 ?" />
|
|
||||||
<!-- <property name="cronExpression" value="0 38 4 28 3 ?" /> -->
|
|
||||||
<!-- 매일 4시18분 마다 작년도 테이블 백업 -->
|
|
||||||
<!-- <property name="cronExpression" value="0 03 12 * * ?" /> -->
|
|
||||||
<!-- <property name="cronExpression" value="8 * * * * ?" /> -->
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<!-- triggers ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ -->
|
|
||||||
<!-- 시스템 로그 요약 스케줄러 -->
|
|
||||||
<bean id="sysLogScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
|
|
||||||
<property name="triggers">
|
|
||||||
<list>
|
|
||||||
<ref bean="sysLogTrigger" /><!-- 시스템 로그 요약 -->
|
|
||||||
<ref bean="SttstMsgBeanTrigger" /><!-- 문자발송일별통계집계 -->
|
|
||||||
<ref bean="SttstMsgDayBeanTrigger" /><!-- 문자발송일별통계집계(매일한번) -->
|
|
||||||
<ref bean="SttstMsgRankBeanTrigger" /><!-- 문자전송순위통계집계 -->
|
|
||||||
<ref bean="SttstMsgRankDayBeanTrigger" /><!-- 문자전송순위통계집계(매일한번) -->
|
|
||||||
|
|
||||||
<!-- mj_msg_data 백업 -->
|
|
||||||
<ref bean="MjMsgDataBackupBeanTrigger" />
|
|
||||||
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- 문자온 문자발송 실패 환불 처리 -->
|
|
||||||
<!-- <bean id="mjoMsgFailPayBack" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="SchdlrManageService" />
|
|
||||||
<property name="targetMethod" value="msgFailPayBack" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
문자온 문자발송 실패 환불처리 배치 시간 셋팅 2분간격으로 실행하기
|
|
||||||
<bean id="mjoMsgFailTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="mjoMsgFailPayBack" />
|
|
||||||
매 2분 0초 간격마다 실행
|
|
||||||
<property name="cronExpression" value="0 0/2 * * * ?" />
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
문자온 문자발송 실패 환불 스케줄러
|
|
||||||
<bean id="mjoMsgFailScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
|
|
||||||
<property name="triggers">
|
|
||||||
<list>
|
|
||||||
<ref bean="mjoMsgFailTrigger" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
<!-- 스케줄러 메일 전송 -->
|
|
||||||
<!-- <bean id="schMailSending" class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
|
|
||||||
<property name="targetObject" ref="egovSchMailSendScheduling" />
|
|
||||||
<property name="targetMethod" value="schMailSend" />
|
|
||||||
<property name="concurrent" value="false" />
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
<!-- 스케줄러 메일 전송 트리거-->
|
|
||||||
<!-- <bean id="schMailSendTrigger" class="org.springframework.scheduling.quartz.SimpleTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="schMailSending" />
|
|
||||||
시작하고 1분후에 실행한다. (milisecond) 60000
|
|
||||||
<property name="startDelay" value="0" />
|
|
||||||
매 24시간마다 실행한다.864000000 (milisecond)
|
|
||||||
<property name="repeatInterval" value="60000" />
|
|
||||||
</bean> -->
|
|
||||||
<!-- <bean id="schMailSendTrigger" class="org.springframework.scheduling.quartz.CronTriggerFactoryBean">
|
|
||||||
<property name="jobDetail" ref="schMailSending" />
|
|
||||||
|
|
||||||
매 50초마다 실행
|
|
||||||
<property name="cronExpression" value="50 * * * * ?" />
|
|
||||||
secs mins hrs dom(day) month dow(week) year(option)
|
|
||||||
https://www.leafcats.com/94 참조
|
|
||||||
d
|
|
||||||
<property name="cronExpression" value="* * 01 * * ?" />
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
<!-- 스케줄러 메일 전송 스케줄러 -->
|
|
||||||
<!-- <bean id="schMailSendScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
|
|
||||||
<property name="triggers">
|
|
||||||
<list>
|
|
||||||
<ref bean="schMailSendTrigger" />
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean> -->
|
|
||||||
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,94 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:egov-security="http://www.egovframe.go.kr/schema/egov-security"
|
|
||||||
xmlns:security="http://www.springframework.org/schema/security"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-4.2.xsd
|
|
||||||
http://www.egovframe.go.kr/schema/egov-security http://www.egovframe.go.kr/schema/egov-security/egov-security-3.7.xsd">
|
|
||||||
|
|
||||||
<security:http pattern="/css/**" security="none"/>
|
|
||||||
<security:http pattern="/html/**" security="none"/>
|
|
||||||
<security:http pattern="/images/**" security="none"/>
|
|
||||||
<security:http pattern="/js/**" security="none"/>
|
|
||||||
<security:http pattern="/resource/**" security="none"/>
|
|
||||||
<security:http pattern="\A/WEB-INF/jsp/.*\Z" request-matcher="regex" security="none"/>
|
|
||||||
|
|
||||||
<egov-security:config id="securityConfig"
|
|
||||||
loginUrl="/uat/uia/actionMain.do"
|
|
||||||
logoutSuccessUrl="/uat/uia/actionMain.do"
|
|
||||||
loginFailureUrl="/uat/uia/actionSecurityLogin.do?login_error=1"
|
|
||||||
accessDeniedUrl="/sec/ram/accessDenied.do"
|
|
||||||
|
|
||||||
dataSource="egov.dataSource"
|
|
||||||
|
|
||||||
jdbcUsersByUsernameQuery="SELECT USER_ID, ESNTL_ID AS PASSWORD, 1 ENABLED, USER_NM, USER_ZIP,
|
|
||||||
USER_ADRES, USER_EMAIL, USER_SE, '-' ORGNZT_ID, ESNTL_ID, MBTLNUM AS MOBLPHONNO,
|
|
||||||
'-' ORGNZT_NM, AUTHOR_CODE AS AUTHORITY, DEPT
|
|
||||||
FROM COMVNUSERMASTER A
|
|
||||||
INNER JOIN LETTNEMPLYRSCRTYESTBS B ON A.ESNTL_ID = B.SCRTY_DTRMN_TRGET_ID
|
|
||||||
WHERE CONCAT(USER_SE, USER_ID) = ?"
|
|
||||||
|
|
||||||
jdbcAuthoritiesByUsernameQuery="SELECT A.SCRTY_DTRMN_TRGET_ID USER_ID, A.AUTHOR_CODE AUTHORITY
|
|
||||||
FROM LETTNEMPLYRSCRTYESTBS A, COMVNUSERMASTER B
|
|
||||||
WHERE A.SCRTY_DTRMN_TRGET_ID = B.ESNTL_ID AND B.USER_ID = ?"
|
|
||||||
|
|
||||||
jdbcMapClass="itn.let.uat.uia.service.impl.EgovSessionMapping"
|
|
||||||
|
|
||||||
requestMatcherType="regex"
|
|
||||||
hash="plaintext"
|
|
||||||
hashBase64="false"
|
|
||||||
|
|
||||||
concurrentMaxSessons="999"
|
|
||||||
concurrentExpiredUrl="/"
|
|
||||||
|
|
||||||
defaultTargetUrl="/uat/uia/actionMain.do"
|
|
||||||
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!--원 소스 -->
|
|
||||||
<!-- defaultTargetUrl="/uat/uia/actionMain.do" -->
|
|
||||||
|
|
||||||
<!-- sqlHierarchicalRoles="
|
|
||||||
SELECT a.CHLDRN_ROLE child, a.PARNTS_ROLE parent
|
|
||||||
FROM LETTNROLES_HIERARCHY a LEFT JOIN LETTNROLES_HIERARCHY b on (a.CHLDRN_ROLE = b.PARNTS_ROLE)" -->
|
|
||||||
|
|
||||||
<egov-security:secured-object-config id="securedObjectConfig"
|
|
||||||
roleHierarchyString="
|
|
||||||
ROLE_ADMIN > ROLE_USER_MEMBER
|
|
||||||
ROLE_USER_MEMBER > ROLE_ANONYMOUS"
|
|
||||||
|
|
||||||
sqlRolesAndUrl="
|
|
||||||
SELECT a.ROLE_PTTRN url, b.AUTHOR_CODE authority
|
|
||||||
FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b
|
|
||||||
WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'url'
|
|
||||||
ORDER BY a.ROLE_SORT"
|
|
||||||
|
|
||||||
sqlRolesAndMethod="
|
|
||||||
SELECT a.ROLE_PTTRN method, b.AUTHOR_CODE authority
|
|
||||||
FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b
|
|
||||||
WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'method'
|
|
||||||
ORDER BY a.ROLE_SORT"
|
|
||||||
|
|
||||||
sqlRolesAndPointcut="
|
|
||||||
SELECT a.ROLE_PTTRN pointcut, b.AUTHOR_CODE authority
|
|
||||||
FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b
|
|
||||||
WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'pointcut'
|
|
||||||
ORDER BY a.ROLE_SORT"
|
|
||||||
|
|
||||||
sqlRegexMatchedRequestMapping="
|
|
||||||
SELECT a.resource_pattern uri, b.authority authority
|
|
||||||
FROM LETTNROLEINFO a, LETTNAUTHORROLERELATE b
|
|
||||||
WHERE a.ROLE_CODE = b.ROLE_CODE AND a.ROLE_TY = 'regex'
|
|
||||||
ORDER BY a.ROLE_SORT"
|
|
||||||
|
|
||||||
/>
|
|
||||||
|
|
||||||
<egov-security:initializer id="initializer" supportMethod="true" supportPointcut="false" />
|
|
||||||
|
|
||||||
<!-- URL에 세미콜론(semicolon)허용 여부(기본값/false) -->
|
|
||||||
<bean id="egovStrictHttpFirewall" class="org.springframework.security.web.firewall.StrictHttpFirewall">
|
|
||||||
<property name="allowSemicolon" value="true"/>
|
|
||||||
</bean>
|
|
||||||
<security:http-firewall ref="egovStrictHttpFirewall"/>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,53 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- lob Handler -->
|
|
||||||
<bean id="lobHandler" class="org.springframework.jdbc.support.lob.DefaultLobHandler" lazy-init="true" />
|
|
||||||
|
|
||||||
<!-- SqlMap setup for iBATIS Database Layer -->
|
|
||||||
<bean id="sqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean">
|
|
||||||
<property name="configLocations">
|
|
||||||
<list>
|
|
||||||
<value>classpath:/egovframework/sqlmap/config/${Globals.DbType}/*.xml</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="dataSource" ref="dataSource-${Globals.DbType}"/>
|
|
||||||
<property name="lobHandler" ref="lobHandler"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- SqlMap setup for iBATIS Database Layer -->
|
|
||||||
<bean id="egov.sqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean">
|
|
||||||
<property name="configLocations">
|
|
||||||
<list>
|
|
||||||
<value>classpath:/egovframework/sqlmap/config/${Globals.DbType}/*.xml</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="dataSource" ref="dataSource-${Globals.DbType}"/>
|
|
||||||
<property name="lobHandler" ref="lobHandler"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<bean id="oracleSqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean">
|
|
||||||
<property name="configLocations">
|
|
||||||
<list>
|
|
||||||
<value>classpath:/egovframework/sqlmap/config/oracle/*.xml</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="dataSource" ref="dataSource-oracle"/>
|
|
||||||
<property name="lobHandler" ref="lobHandler"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<!-- kcdf maria migration -->
|
|
||||||
<bean id="kcdfSqlMapClient" class="egovframework.rte.psl.orm.ibatis.SqlMapClientFactoryBean">
|
|
||||||
<property name="configLocations">
|
|
||||||
<list>
|
|
||||||
<value>classpath:/egovframework/sqlmap/config/maria/*.xml</value>
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
<property name="dataSource" ref="dataSource-kcdf"/>
|
|
||||||
<property name="lobHandler" ref="lobHandler"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,34 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- System Log Aspect -->
|
|
||||||
<bean id="logManage" class="itn.let.sym.log.clg.service.EgovLoginLogAspect" />
|
|
||||||
<aop:config>
|
|
||||||
<aop:aspect id="logManageAspect" ref="logManage">
|
|
||||||
<!-- 로그인 Method -->
|
|
||||||
<aop:before pointcut="execution(public * itn.let.uat.uia.service.EgovLoginService.actionLogin(..))" method="logLogin" />
|
|
||||||
<!-- 로그아웃 Method
|
|
||||||
<aop:before pointcut="execution(public * itn.let.uat.uia.web.EgovLoginController.actionLogout(..))" method="logLogout" />
|
|
||||||
-->
|
|
||||||
</aop:aspect>
|
|
||||||
</aop:config>
|
|
||||||
|
|
||||||
<!-- System Log Aspect -->
|
|
||||||
<!-- <bean id="syslog" class="itn.let.sym.log.lgm.service.EgovSysLogAspect" />
|
|
||||||
<aop:config>
|
|
||||||
<aop:aspect id="sysLogAspect" ref="syslog"> -->
|
|
||||||
<!-- insert로 시작되는 service Method -->
|
|
||||||
<!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.insert*(..))" method="logInsert" /> -->
|
|
||||||
<!-- update로 시작되는 service Method -->
|
|
||||||
<!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.update*(..))" method="logUpdate" /> -->
|
|
||||||
<!-- delete로 시작되는 service Method -->
|
|
||||||
<!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.delete*(..))" method="logDelete" /> -->
|
|
||||||
<!-- select로 시작되는 service Method -->
|
|
||||||
<!-- <aop:around pointcut="execution(public * itn.com..impl.*Impl.select*(..))" method="logSelect" /> -->
|
|
||||||
<!-- 관리자 로그를 위한 메소드 -->
|
|
||||||
<!-- </aop:aspect>
|
|
||||||
</aop:config> -->
|
|
||||||
</beans>
|
|
||||||
@ -1,25 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xmlns:aop="http://www.springframework.org/schema/aop"
|
|
||||||
xmlns:tx="http://www.springframework.org/schema/tx"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
|
|
||||||
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- transaction 설정 -->
|
|
||||||
<bean id="txManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
|
|
||||||
<property name="dataSource" ref="dataSource"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<tx:advice id="txAdvice" transaction-manager="txManager">
|
|
||||||
<tx:attributes>
|
|
||||||
<tx:method name="*" rollback-for="Exception"/>
|
|
||||||
</tx:attributes>
|
|
||||||
</tx:advice>
|
|
||||||
|
|
||||||
<aop:config>
|
|
||||||
<aop:pointcut id="requiredTx" expression="execution(* itn.let..impl.*Impl.*(..)) or execution(* itn.com..*Impl.*(..))"/>
|
|
||||||
<aop:advisor advice-ref="txAdvice" pointcut-ref="requiredTx" />
|
|
||||||
</aop:config>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,21 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
||||||
|
|
||||||
<!-- Integration Apache Commons Validator by Spring Modules -->
|
|
||||||
<bean id="beanValidator" class="org.springmodules.validation.commons.DefaultBeanValidator">
|
|
||||||
<property name="validatorFactory" ref="validatorFactory"/>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
<bean id="validatorFactory" class="org.springmodules.validation.commons.DefaultValidatorFactory">
|
|
||||||
<property name="validationConfigLocations">
|
|
||||||
<list>
|
|
||||||
<!-- 경량환경 템플릿 밸리데이터 설정 -->
|
|
||||||
<value>classpath:/egovframework/validator/validator-rules-let.xml</value>
|
|
||||||
<value>classpath:/egovframework/validator/let/**/*.xml</value>
|
|
||||||
<value>classpath:/egovframework/validator/**/*.xml</value> <!-- allInOne 배너등 추가시 -->
|
|
||||||
</list>
|
|
||||||
</property>
|
|
||||||
</bean>
|
|
||||||
|
|
||||||
</beans>
|
|
||||||
@ -1,43 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMap>
|
|
||||||
<typeAlias alias="KcdfNewBbsVO" type="egovframework.migration.service.KcdfNewBbsVO"/>
|
|
||||||
|
|
||||||
<select id="KcdfNewDAO.selectKcdfBasicCount" resultClass="int" >
|
|
||||||
SELECT COUNT(*) FROM lettnbbs
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="KcdfNewDAO.selectKcdfBbsList" parameterClass="KcdfNewBbsVO" resultClass="KcdfNewBbsVO" >
|
|
||||||
<![CDATA[
|
|
||||||
SELECT
|
|
||||||
NTT_ID,
|
|
||||||
BBS_ID,
|
|
||||||
NTT_NO,
|
|
||||||
NTT_SJ,
|
|
||||||
NTT_CN,
|
|
||||||
ANSWER_AT,
|
|
||||||
PARNTSCTT_NO,
|
|
||||||
ANSWER_LC,
|
|
||||||
SORT_ORDR,
|
|
||||||
RDCNT,
|
|
||||||
USE_AT,
|
|
||||||
NTCE_BGNDE,
|
|
||||||
NTCE_ENDDE,
|
|
||||||
NTCR_ID,
|
|
||||||
NTCR_NM,
|
|
||||||
PASSWORD,
|
|
||||||
ATCH_FILE_ID,
|
|
||||||
FRST_REGIST_PNTTM,
|
|
||||||
FRST_REGISTER_ID,
|
|
||||||
LAST_UPDT_PNTTM,
|
|
||||||
LAST_UPDUSR_ID,
|
|
||||||
NOTICE_AT,
|
|
||||||
SECRET_AT
|
|
||||||
FROM
|
|
||||||
lettnbbs
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
|
|
||||||
</sqlMap>
|
|
||||||
@ -1,64 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMap>
|
|
||||||
<typeAlias alias="KcdfNewBbsVO" type="egovframework.migration.service.KcdfNewBbsVO"/>
|
|
||||||
|
|
||||||
<insert id="NcmsDAO.insertNcmsBbsInfo" parameterClass="KcdfNewBbsVO">
|
|
||||||
<![CDATA[
|
|
||||||
INSERT INTO LETTNBBS_BACK
|
|
||||||
(
|
|
||||||
NTT_ID,
|
|
||||||
BBS_ID,
|
|
||||||
NTT_NO,
|
|
||||||
NTT_SJ,
|
|
||||||
NTT_CN,
|
|
||||||
ANSWER_AT,
|
|
||||||
PARNTSCTT_NO,
|
|
||||||
ANSWER_LC,
|
|
||||||
SORT_ORDR,
|
|
||||||
RDCNT,
|
|
||||||
USE_AT,
|
|
||||||
NTCE_BGNDE,
|
|
||||||
NTCE_ENDDE,
|
|
||||||
NTCR_ID,
|
|
||||||
NTCR_NM,
|
|
||||||
PASSWORD,
|
|
||||||
ATCH_FILE_ID,
|
|
||||||
FRST_REGIST_PNTTM,
|
|
||||||
FRST_REGISTER_ID,
|
|
||||||
LAST_UPDT_PNTTM,
|
|
||||||
LAST_UPDUSR_ID,
|
|
||||||
NOTICE_AT,
|
|
||||||
SECRET_AT
|
|
||||||
)
|
|
||||||
VALUES
|
|
||||||
(
|
|
||||||
#NTT_ID#,
|
|
||||||
#BBS_ID#,
|
|
||||||
#NTT_NO#,
|
|
||||||
#NTT_SJ#,
|
|
||||||
#NTT_CN#,
|
|
||||||
#ANSWER_AT#,
|
|
||||||
#PARNTSCTT_NO#,
|
|
||||||
#ANSWER_LC#,
|
|
||||||
#SORT_ORDR#,
|
|
||||||
#RDCNT#,
|
|
||||||
#USE_AT#,
|
|
||||||
#NTCE_BGNDE#,
|
|
||||||
#NTCE_ENDDE#,
|
|
||||||
#NTCR_ID#,
|
|
||||||
#NTCR_NM#,
|
|
||||||
#PASSWORD#,
|
|
||||||
#ATCH_FILE_ID#,
|
|
||||||
#FRST_REGIST_PNTTM#,
|
|
||||||
#FRST_REGISTER_ID#,
|
|
||||||
#LAST_UPDT_PNTTM#,
|
|
||||||
#LAST_UPDUSR_ID#,
|
|
||||||
#NOTICE_AT#,
|
|
||||||
#SECRET_AT#
|
|
||||||
)
|
|
||||||
]]>
|
|
||||||
</insert>
|
|
||||||
|
|
||||||
|
|
||||||
</sqlMap>
|
|
||||||
@ -1,120 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMap>
|
|
||||||
<!-- <typeAlias alias="OrcaleTestVO" type="egovframework.test.service.OrcaleTestVO"/>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOracleBasicCount" resultClass="int" >
|
|
||||||
SELECT COUNT(*) FROM TB_BBS_BASIC
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOracleBasicList" resultClass="OrcaleTestVO" >
|
|
||||||
<![CDATA[
|
|
||||||
SELECT
|
|
||||||
BBS_CD_N
|
|
||||||
, BBS_SEQ_N
|
|
||||||
, BBS_IDX_N
|
|
||||||
, BBS_REF_N
|
|
||||||
, BBS_DEPTH_N
|
|
||||||
, TITLE_V
|
|
||||||
, READ_CNT_N
|
|
||||||
, START_DT_V
|
|
||||||
, END_DT_V
|
|
||||||
, COMMENT_CNT_N
|
|
||||||
, FILE_CNT_N
|
|
||||||
, TAG_CNT_N
|
|
||||||
, RATE_CNT_N
|
|
||||||
, SECRET_YN_C
|
|
||||||
, NOTICE_YN_C
|
|
||||||
, EDITOR_YN_C
|
|
||||||
, BEST_YN_C
|
|
||||||
, DELETE_YN_C
|
|
||||||
, PERMITS_YN_C
|
|
||||||
, PERMITS_ID_V
|
|
||||||
, PERMITS_DT_V
|
|
||||||
, USER_ID_V
|
|
||||||
, USER_NM_V
|
|
||||||
, USER_PWD_V
|
|
||||||
, USER_EMAIL_V
|
|
||||||
, USER_IP_V
|
|
||||||
, USER_NATION_C
|
|
||||||
, UPD_ID_V
|
|
||||||
, REG_DT_D
|
|
||||||
, UPD_DT_D
|
|
||||||
, CONTENT_L
|
|
||||||
, ANSWER_L
|
|
||||||
, CTG_CD_N
|
|
||||||
, SUMMARY_V
|
|
||||||
, MGR_DEPT_CD_V
|
|
||||||
, IPIN_NO_V
|
|
||||||
, MAIN_DISPLAY_C
|
|
||||||
, KEY_WORD_V
|
|
||||||
, LINK_URL_V
|
|
||||||
, IMAGE_URL_V
|
|
||||||
, MGR_DEPT_NM_V
|
|
||||||
, RATE_SUM_N
|
|
||||||
, PERMITS_NM_V
|
|
||||||
, PERMITS_EMAIL_V
|
|
||||||
, PERMITS_PHONE_V
|
|
||||||
, USER_PHONE_V
|
|
||||||
, REG_ID_V
|
|
||||||
FROM
|
|
||||||
TB_BBS_BASIC
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOraclePublishCount" resultClass="int" >
|
|
||||||
SELECT COUNT(*) FROM PUBLISH
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOraclePublishList" resultClass="OrcaleTestVO" >
|
|
||||||
<![CDATA[
|
|
||||||
SELECT
|
|
||||||
NO
|
|
||||||
,TITLE
|
|
||||||
,AUTHOR
|
|
||||||
,RELATE_DPT
|
|
||||||
,ISSUE_YEAR
|
|
||||||
,TYPE,PAGES
|
|
||||||
,PRICE
|
|
||||||
,ORG_VIEW
|
|
||||||
,CONTENT
|
|
||||||
,HIT
|
|
||||||
,YES_NO
|
|
||||||
,RDATE
|
|
||||||
,IMG_FILE
|
|
||||||
,PCODE
|
|
||||||
,ORG_VIEW_PATH
|
|
||||||
,IMG_FILE_PATH
|
|
||||||
,ALLOW_VIEW
|
|
||||||
FROM
|
|
||||||
PUBLISH
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOracleFileCount" resultClass="int" >
|
|
||||||
SELECT COUNT(*) FROM TB_BBS_FILE
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOracleFileList" resultClass="OrcaleTestVO" >
|
|
||||||
<![CDATA[
|
|
||||||
SELECT
|
|
||||||
BBS_CD_N,FILE_SEQ_N,BBS_SEQ_N,FILE_NM_V,FILE_PATH_V,FILE_SIZE_N,FILE_TYPE_V,FILE_KIND_V,DOWN_CNT_N,REG_ID_V,REG_DT_D,UPD_ID_V,UPD_DT_D,FILE_COMMENT_V
|
|
||||||
FROM
|
|
||||||
TB_BBS_FILE
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOracleResrvationCount" resultClass="int" >
|
|
||||||
SELECT COUNT(*) FROM RESERVATION
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="OrcalTestDAO.selectOracleResrvationList" resultClass="OrcaleTestVO" >
|
|
||||||
<![CDATA[
|
|
||||||
SELECT
|
|
||||||
APPLY_NUM,USER_NAME,USER_NUM1,USER_NUM2,USER_ENAME,RES_NUM,GROUP_NAME,GROUP_ENAME,RES_SDATE,RES_EDATE,RES_PERIOD,RES_PRICE,EX_ROOM1,EX_ROOM2,EX_ROOM3,EX_ROOM4,AREA,PREMIUM,EX_FIELD,SEX,POSTAL_NUM1,POSTAL_NUM2,ADDRESS1,ADDRESS2,TEL_HOME1,TEL_HOME2,TEL_HOME3,TEL_MOBILE1,TEL_MOBILE2,TEL_MOBILE3,TEL_WORK1,TEL_WORK2,TEL_WORK3,FAX1,FAX2,FAX3,EMAIL,HOMEPAGE,EX_NAME,EX_SUBJECT,EX_MATTER,EX_METHOD,EX_STANDARD,RES_STATE,EX_DEVISE,RES_START,BANK,OWNER,ACCOUNT_NUM,REASON,RECIEVE_MONEY,IMAGE_NAME,IMAGE_SIZE,EX_EXPLAIN,RECORD_STATUS,TEX_NEED,TEX_TYPE,TEX_NAME,TEX_NUM,TEX_FIELD,TEX_CLASSIFY,TEX_POST1,TEX_POST2,TEX_ADDRESS1,TEX_ADDRESS2,MEMBER_ID,COMPANY_NAME,COMPANY_NUMBER,SUBITEM,PORTFOLIO_FILE,PLANEXH_PLACE,DISPLAY,MAINDISPLAY,AUTHOR_NAME,MEMBER_PW,EX_ROOM5,EX_ROOM6,EX_HOURS,EX_TEL1,EX_TEL2,EX_TEL3,IMAGE_PATH,PORTFOLIO_PATH,PORTFOLIO_SIZE,COMPANY_FIELD,COMPANY_CLASSIFY,USER_TYPE,ZIP_CODE,TEX_ZIP
|
|
||||||
FROM
|
|
||||||
RESERVATION
|
|
||||||
]]>
|
|
||||||
</select> -->
|
|
||||||
|
|
||||||
</sqlMap>
|
|
||||||
@ -1,291 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd">
|
|
||||||
|
|
||||||
<sqlMap namespace="Banner">
|
|
||||||
|
|
||||||
<typeAlias alias="Banner" type="itn.com.uss.ion.bnr.service.Banner"/>
|
|
||||||
<typeAlias alias="BannerVO" type="itn.com.uss.ion.bnr.service.BannerVO"/>
|
|
||||||
<typeAlias alias="sortVO" type="itn.com.uss.ion.pwm.service.SortVO"/>
|
|
||||||
|
|
||||||
<resultMap id="banner" class="itn.com.uss.ion.bnr.service.BannerVO">
|
|
||||||
<result property="bannerId" column="BANNER_ID" columnIndex="1"/>
|
|
||||||
<result property="bannerNm" column="BANNER_NM" columnIndex="2"/>
|
|
||||||
<result property="linkUrl" column="LINK_URL" columnIndex="3"/>
|
|
||||||
<result property="bannerImage" column="BANNER_IMAGE" columnIndex="4"/>
|
|
||||||
<result property="bannerImageFile" column="BANNER_IMAGE_FILE" columnIndex="5"/>
|
|
||||||
<result property="bannerDc" column="BANNER_DC" columnIndex="6"/>
|
|
||||||
<result property="sortOrdr" column="SORT_ORDR" columnIndex="7"/>
|
|
||||||
<result property="reflctAt" column="REFLCT_AT" columnIndex="8"/>
|
|
||||||
<result property="userId" column="FRST_REGISTER_ID" columnIndex="9"/>
|
|
||||||
<result property="regDate" column="FRST_REGIST_PNTTM" columnIndex="10"/>
|
|
||||||
<result property="delSttus" column="DEL_STTUS" columnIndex="11"/>
|
|
||||||
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<resultMap id="fileList" class="itn.com.cmm.service.FileVO">
|
|
||||||
<result property="atchFileId" column="ATCH_FILE_ID" columnIndex="1"/>
|
|
||||||
<result property="fileCn" column="FILE_CN" columnIndex="2"/>
|
|
||||||
<result property="fileExtsn" column="FILE_EXTSN" columnIndex="3"/>
|
|
||||||
<result property="fileMg" column="FILE_SIZE" columnIndex="4"/>
|
|
||||||
<result property="fileSn" column="FILE_SN" columnIndex="5"/>
|
|
||||||
<result property="fileStreCours" column="FILE_STRE_COURS" columnIndex="6"/>
|
|
||||||
<result property="orignlFileNm" column="ORIGNL_FILE_NM" columnIndex="7"/>
|
|
||||||
<result property="streFileNm" column="STRE_FILE_NM" columnIndex="8"/>
|
|
||||||
<result property="creatDt" column="CREAT_DT" columnIndex="9"/>
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<resultMap id="bannerImage" class="itn.com.uss.ion.bnr.service.BannerVO">
|
|
||||||
<result property="bannerImageFile" column="BANNER_IMAGE_FILE" columnIndex="1"/>
|
|
||||||
<result property="linkUrl" column="LINK_URL" columnIndex="2"/>
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<resultMap id="bannerImageFile" class="itn.com.cmm.service.FileVO">
|
|
||||||
<result property="fileStreCours" column="FILE_STRE_COURS" columnIndex="1"/>
|
|
||||||
<result property="streFileNm" column="STRE_FILE_NM" columnIndex="2"/>
|
|
||||||
</resultMap>
|
|
||||||
|
|
||||||
<select id="bannerDAO.selectBannerList" parameterClass="BannerVO" resultClass="BannerVO">
|
|
||||||
SELECT BANNER_ID AS BANNERID,
|
|
||||||
BANNER_NM AS BANNERNM,
|
|
||||||
LINK_URL AS LINKURL,
|
|
||||||
BANNER_IMAGE AS BANNERIMAGE,
|
|
||||||
BANNER_IMAGE_FILE AS BANNERIMAGEFILE ,
|
|
||||||
BANNER_DC AS BANNERDC ,
|
|
||||||
SORT_ORDR AS SORTORDR ,
|
|
||||||
REFLCT_AT AS REFLCTAT,
|
|
||||||
(SELECT USER_NM FROM LETTNEMPLYRINFO WHERE EMPLYR_ID = FRST_REGISTER_ID) REGISTERID,
|
|
||||||
DATE_FORMAT(FRST_REGIST_PNTTM, '%Y-%m-%d') REGDATE,
|
|
||||||
DEL_STTUS AS DELSTTUS
|
|
||||||
FROM COMTNBANNER
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEqual property="delSttus" compareValue="Y">
|
|
||||||
AND DEL_STTUS != 'Y'
|
|
||||||
</isNotEqual>
|
|
||||||
<isNotEmpty property="seCd">
|
|
||||||
AND SE_CD = #seCd#
|
|
||||||
</isNotEmpty>
|
|
||||||
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
<isEqual property="searchCondition" compareValue="">
|
|
||||||
AND ( BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
OR LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
)
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="1">
|
|
||||||
AND BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="2">
|
|
||||||
AND LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="reflctAt">
|
|
||||||
AND REFLCT_AT = #reflctAt#
|
|
||||||
</isNotEmpty>
|
|
||||||
ORDER BY 1=1
|
|
||||||
<isNotEmpty property="searchSortCnd">
|
|
||||||
,$searchSortCnd$
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchSortOrd">
|
|
||||||
$searchSortOrd$
|
|
||||||
</isNotEmpty>
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="bannerDAO.selectBannerListTotCnt" parameterClass="BannerVO" resultClass="int">
|
|
||||||
|
|
||||||
SELECT COUNT(*) totcnt
|
|
||||||
FROM COMTNBANNER
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEqual property="delSttus" compareValue="Y">
|
|
||||||
AND DEL_STTUS != 'Y'
|
|
||||||
</isNotEqual>
|
|
||||||
<isNotEmpty property="seCd">
|
|
||||||
AND SE_CD = #seCd#
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
<isEqual property="searchCondition" compareValue="">
|
|
||||||
AND ( BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
OR LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
)
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="1">
|
|
||||||
AND BANNER_NM LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="2">
|
|
||||||
AND LINK_URL LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="bannerDAO.selectBanner" resultClass="BannerVO">
|
|
||||||
<![CDATA[
|
|
||||||
SELECT BANNER_ID AS BANNERID,
|
|
||||||
BANNER_NM AS BANNERNM,
|
|
||||||
LINK_URL AS LINKURL,
|
|
||||||
BANNER_IMAGE AS BANNERIMAGE,
|
|
||||||
BANNER_IMAGE_FILE AS BANNERIMAGEFILE,
|
|
||||||
BANNER_DC AS BANNERDC,
|
|
||||||
SORT_ORDR AS SORTORDR,
|
|
||||||
SORT_ORDR AS sort,
|
|
||||||
REFLCT_AT AS REFLCTAT,
|
|
||||||
DATE_FORMAT(LAST_UPDT_PNTTM, '%Y-%m-%d %T') REGDATE ,
|
|
||||||
DEL_STTUS AS DELSTTUS ,
|
|
||||||
SE_CD AS SECD ,
|
|
||||||
ISTARGET,
|
|
||||||
(SELECT USER_NM FROM LETTNEMPLYRINFO WHERE EMPLYR_ID = FRST_REGISTER_ID) REGISTERID
|
|
||||||
FROM COMTNBANNER
|
|
||||||
WHERE BANNER_ID = #bannerId#
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<insert id="bannerDAO.insertBanner" parameterClass="Banner">
|
|
||||||
INSERT INTO COMTNBANNER
|
|
||||||
(BANNER_ID,
|
|
||||||
BANNER_NM,
|
|
||||||
LINK_URL,
|
|
||||||
BANNER_IMAGE,
|
|
||||||
BANNER_IMAGE_FILE,
|
|
||||||
BANNER_DC,
|
|
||||||
SORT_ORDR,
|
|
||||||
REFLCT_AT,
|
|
||||||
FRST_REGISTER_ID,
|
|
||||||
DEL_STTUS,
|
|
||||||
FRST_REGIST_PNTTM,
|
|
||||||
LAST_UPDT_PNTTM,
|
|
||||||
<isNotEmpty property="seCd">
|
|
||||||
SE_CD,
|
|
||||||
</isNotEmpty>
|
|
||||||
ISTARGET)
|
|
||||||
VALUES (#bannerId#,
|
|
||||||
#bannerNm#,
|
|
||||||
#linkUrl#,
|
|
||||||
#bannerImage#,
|
|
||||||
#bannerImageFile#,
|
|
||||||
#bannerDc#,
|
|
||||||
#sortOrdr#,
|
|
||||||
#reflctAt#,
|
|
||||||
#userId#,
|
|
||||||
#delSttus#,
|
|
||||||
now(),
|
|
||||||
now(),
|
|
||||||
<isNotEmpty property="seCd">
|
|
||||||
#seCd#,
|
|
||||||
</isNotEmpty>
|
|
||||||
#istarget#)
|
|
||||||
</insert>
|
|
||||||
|
|
||||||
<update id="bannerDAO.updateBanner" parameterClass="Banner">
|
|
||||||
UPDATE COMTNBANNER
|
|
||||||
SET BANNER_NM = #bannerNm#,
|
|
||||||
LINK_URL = #linkUrl#,
|
|
||||||
<isEqual property="isAtchFile" compareValue="true">
|
|
||||||
BANNER_IMAGE = #bannerImage#,
|
|
||||||
BANNER_IMAGE_FILE = #bannerImageFile#,
|
|
||||||
</isEqual>
|
|
||||||
BANNER_DC = #bannerDc#,
|
|
||||||
SORT_ORDR = #sortOrdr#,
|
|
||||||
REFLCT_AT = #reflctAt#,
|
|
||||||
LAST_UPDUSR_ID = #userId#,
|
|
||||||
<isNotEmpty property="delSttus">
|
|
||||||
DEL_STTUS = #delSttus#,
|
|
||||||
</isNotEmpty>
|
|
||||||
LAST_UPDT_PNTTM = now(),
|
|
||||||
<isNotEmpty property="siteId">
|
|
||||||
SITE_ID = #siteId# ,
|
|
||||||
</isNotEmpty>
|
|
||||||
ISTARGET = #istarget#
|
|
||||||
WHERE BANNER_ID = #bannerId#
|
|
||||||
</update>
|
|
||||||
|
|
||||||
<delete id="bannerDAO.deleteBanner" parameterClass="Banner">
|
|
||||||
<![CDATA[
|
|
||||||
DELETE FROM COMTNBANNER
|
|
||||||
WHERE BANNER_ID = #bannerId#
|
|
||||||
]]>
|
|
||||||
<!-- <![CDATA[
|
|
||||||
UPDATE COMTNBANNER
|
|
||||||
SET DEL_STTUS = #delSttus#,
|
|
||||||
REFLCT_AT = #reflctAt#
|
|
||||||
WHERE BANNER_ID = #bannerId#
|
|
||||||
]]> -->
|
|
||||||
|
|
||||||
</delete>
|
|
||||||
|
|
||||||
<select id="bannerDAO.selectBannerResult" resultMap="bannerImage">
|
|
||||||
<![CDATA[
|
|
||||||
SELECT BANNER_IMAGE_FILE,
|
|
||||||
LINK_URL
|
|
||||||
FROM COMTNBANNER
|
|
||||||
WHERE REFLCT_AT = 'Y'
|
|
||||||
ORDER BY SORT_ORDR
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="bannerDAO.selectBannerFile" parameterClass="Banner" resultMap="bannerImageFile">
|
|
||||||
<![CDATA[
|
|
||||||
SELECT B.FILE_STRE_COURS AS FILE_STRE_COURS,
|
|
||||||
B.STRE_FILE_NM AS STRE_FILE_NM
|
|
||||||
FROM COMTNBANNER A,
|
|
||||||
LETTNFILEDETAIL B /** COMTNFILEDETAIL B 공통모듈의 수정 **/
|
|
||||||
WHERE 1 = 1
|
|
||||||
AND A.BANNER_ID = #bannerId#
|
|
||||||
AND A.BANNER_IMAGE_FILE = B.ATCH_FILE_ID
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="bannerDAO.getSortList" resultClass="EgovMap">
|
|
||||||
<![CDATA[
|
|
||||||
SELECT
|
|
||||||
SORT_ORDR as CM_SUB_CODE,
|
|
||||||
SORT_ORDR as CM_CODE_NAME
|
|
||||||
FROM COMTNBANNER mb
|
|
||||||
WHERE DEL_STTUS = 'N'
|
|
||||||
ORDER BY SORT_ORDR
|
|
||||||
]]>
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="bannerDAO.getMaxSort" resultClass="int">
|
|
||||||
SELECT IF(COUNT(*)=0 ,1, COUNT(*)) FROM COMTNBANNER
|
|
||||||
WHERE DEL_STTUS = 'N'
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<update id="bannerDAO.updateSortUp" parameterClass="sortVO">
|
|
||||||
<![CDATA[
|
|
||||||
UPDATE COMTNBANNER SET
|
|
||||||
SORT_ORDR = SORT_ORDR + 1
|
|
||||||
WHERE
|
|
||||||
SORT_ORDR >= #startSort# AND SORT_ORDR <= #endSort#
|
|
||||||
]]>
|
|
||||||
</update>
|
|
||||||
|
|
||||||
<update id="bannerDAO.resetSort" parameterClass="BannerVO">
|
|
||||||
UPDATE COMTNBANNER A ,
|
|
||||||
(SELECT ROW_NUMBER() OVER(ORDER BY SORT_ORDR
|
|
||||||
<isEqual property="sortOver" compareValue="A">
|
|
||||||
, LAST_UPDT_PNTTM ASC
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="sortOver" compareValue="D">
|
|
||||||
, LAST_UPDT_PNTTM DESC
|
|
||||||
</isEqual>
|
|
||||||
) AS SORT1 , BANNER_ID FROM COMTNBANNER
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty property="seCd">
|
|
||||||
AND SE_CD = #seCd#
|
|
||||||
</isNotEmpty>
|
|
||||||
ORDER BY SORT1
|
|
||||||
) B
|
|
||||||
SET A.SORT_ORDR = B.SORT1
|
|
||||||
WHERE A.BANNER_ID = B.BANNER_ID
|
|
||||||
</update>
|
|
||||||
|
|
||||||
<update id="bannerDAO.updateSortDown" parameterClass="sortVO">
|
|
||||||
<![CDATA[
|
|
||||||
UPDATE COMTNBANNER SET
|
|
||||||
SORT_ORDR = SORT_ORDR - 1
|
|
||||||
WHERE
|
|
||||||
SORT_ORDR >= #startSort# AND SORT_ORDR <= #endSort#
|
|
||||||
]]>
|
|
||||||
</update>
|
|
||||||
|
|
||||||
</sqlMap>
|
|
||||||
@ -1,16 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
|
|
||||||
<!DOCTYPE sqlMap PUBLIC "-//ibatis.apache.org//DTD SQL Map 2.0//EN" "http://ibatis.apache.org/dtd/sql-map-2.dtd">
|
|
||||||
|
|
||||||
<sqlMap namespace="Publish">
|
|
||||||
<typeAlias alias="publishVO" type="itn.com.uss.ion.pub.service.PublishVO"/>
|
|
||||||
|
|
||||||
<select id="publishDAO.selectPublishList" parameterClass="publishVO" resultClass="publishVO">
|
|
||||||
SELECT no , content FROM PUBLISH A
|
|
||||||
WHERE 1=1
|
|
||||||
AND YES_NO != 'D'
|
|
||||||
AND YES_NO = 'Y'
|
|
||||||
AND PCODE = 1
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
</sqlMap>
|
|
||||||
@ -1,493 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?><!--
|
|
||||||
수정일 수정자 수정내용
|
|
||||||
========= ======= =================================================
|
|
||||||
2011.09.19 서준식 selectHpcmList 등록일자 Character 타입으로 변경
|
|
||||||
2011.09.29 서준식 selectHpcmListTotCnt 검색 조건 수정
|
|
||||||
-->
|
|
||||||
<!DOCTYPE sqlMap PUBLIC "-//iBATIS.com//DTD SQL Map 2.0//EN" "http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMap namespace="Hpcm">
|
|
||||||
<typeAlias alias="HpcmVO" type="itn.com.uss.olh.hpc.service.HpcmVO"/>
|
|
||||||
<typeAlias alias="hackIpVO" type="itn.com.uss.olh.hpc.service.HackIpVO"/>
|
|
||||||
|
|
||||||
<select id="Hpcm.selectHpcmDetail" parameterClass="HpcmVO" resultClass="HpcmVO">
|
|
||||||
SELECT A.HPCM_ID AS hpcmId,
|
|
||||||
A.HPCM_SE_CODE AS hpcmSeCode,
|
|
||||||
B.CODE_NM AS hpcmSeCodeTxt,
|
|
||||||
A.HPCM_DFN AS hpcmDfn,
|
|
||||||
HPCM_DC AS hpcmDc,
|
|
||||||
DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d') AS frstRegistPnttm,
|
|
||||||
A.FRST_REGISTER_ID AS frstRegisterId,
|
|
||||||
DATE_FORMAT(A.LAST_UPDT_PNTTM,'%Y-%m-%d') AS lastUpdtPnttm ,
|
|
||||||
A.LAST_UPDUSR_ID AS lastUpdusrId
|
|
||||||
FROM COMTNHPCMINFO A
|
|
||||||
LEFT JOIN (
|
|
||||||
SELECT CODE_NM , CODE , CODE_DC
|
|
||||||
FROM LETTCCMMNDETAILCODE
|
|
||||||
WHERE USE_AT = 'Y'
|
|
||||||
AND CODE_ID = 'ITN018'
|
|
||||||
) B ON A.HPCM_SE_CODE = B.CODE
|
|
||||||
WHERE HPCM_ID=#hpcmId#
|
|
||||||
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="Hpcm.selectHpcmList" parameterClass="HpcmVO" resultClass="HpcmVO">
|
|
||||||
SELECT
|
|
||||||
COUNT(HPCM_ID) OVER() AS totCnt,
|
|
||||||
A.HPCM_ID AS hpcmId,
|
|
||||||
A.HPCM_SE_CODE AS hpcmSeCode,
|
|
||||||
B.CODE_NM AS hpcmSeCodeTxt,
|
|
||||||
A.HPCM_DFN AS hpcmDfn,
|
|
||||||
HPCM_DC AS hpcmDc,
|
|
||||||
DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d %T') frstRegistPnttm,
|
|
||||||
A.FRST_REGISTER_ID AS frstRegisterId,
|
|
||||||
DATE_FORMAT(A.LAST_UPDT_PNTTM,'%Y-%m-%d %T') lastUpdusrPnttm,
|
|
||||||
A.LAST_UPDUSR_ID AS lastUpdusrId
|
|
||||||
FROM COMTNHPCMINFO A
|
|
||||||
LEFT JOIN (
|
|
||||||
SELECT CODE_NM , CODE , CODE_DC
|
|
||||||
FROM LETTCCMMNDETAILCODE
|
|
||||||
WHERE USE_AT = 'Y'
|
|
||||||
AND CODE_ID = 'ITN018'
|
|
||||||
) B ON A.HPCM_SE_CODE = B.CODE
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty property="hpcmSeCode">
|
|
||||||
AND HPCM_SE_CODE = #hpcmSeCode#
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
AND A.HPCM_DFN LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
</isNotEmpty>
|
|
||||||
ORDER BY 1=1
|
|
||||||
<isNotEmpty property="searchSortCnd">
|
|
||||||
,$searchSortCnd$
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchSortOrd">
|
|
||||||
$searchSortOrd$
|
|
||||||
</isNotEmpty>
|
|
||||||
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<insert id="Hpcm.insertHpcm">
|
|
||||||
INSERT INTO COMTNHPCMINFO
|
|
||||||
(HPCM_ID
|
|
||||||
, HPCM_SE_CODE
|
|
||||||
, HPCM_DFN
|
|
||||||
, HPCM_DC
|
|
||||||
, FRST_REGIST_PNTTM
|
|
||||||
, FRST_REGISTER_ID
|
|
||||||
, LAST_UPDT_PNTTM
|
|
||||||
, LAST_UPDUSR_ID)
|
|
||||||
VALUES ( #hpcmId#
|
|
||||||
, #hpcmSeCode#
|
|
||||||
, #hpcmDfn#
|
|
||||||
, #hpcmDc#
|
|
||||||
, sysdate()
|
|
||||||
, #frstRegisterId#
|
|
||||||
, sysdate()
|
|
||||||
, #lastUpdusrId# )
|
|
||||||
|
|
||||||
</insert>
|
|
||||||
|
|
||||||
<update id="Hpcm.updateHpcm">
|
|
||||||
UPDATE COMTNHPCMINFO SET
|
|
||||||
HPCM_SE_CODE=#hpcmSeCode#
|
|
||||||
, HPCM_DFN=#hpcmDfn#
|
|
||||||
, HPCM_DC=#hpcmDc#
|
|
||||||
, LAST_UPDT_PNTTM = sysdate()
|
|
||||||
, LAST_UPDUSR_ID=#lastUpdusrId#
|
|
||||||
WHERE HPCM_ID=#hpcmId#
|
|
||||||
</update>
|
|
||||||
|
|
||||||
<delete id="Hpcm.deleteHpcm">
|
|
||||||
DELETE FROM COMTNHPCMINFO
|
|
||||||
WHERE HPCM_ID=#hpcmId#
|
|
||||||
</delete>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectHackIpList" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
|
|
||||||
SELECT
|
|
||||||
COUNT(HACK_ID) OVER() AS totCnt,
|
|
||||||
A.HACK_ID AS hackId,
|
|
||||||
A.HACK_USER_ID AS hackUserId,
|
|
||||||
A.ACCESS_IP AS accessIp,
|
|
||||||
A.REGISTER_ID AS registerId,
|
|
||||||
A.WRONG_CNT AS wrongCnt,
|
|
||||||
A.BLOCK_YN AS blockYn,
|
|
||||||
B.CODE_NM AS blockYnTxt,
|
|
||||||
DATE_FORMAT(A.FRST_REGIST_PNTTM,'%Y-%m-%d %H:%i:%S') AS frstRegistPnttm,
|
|
||||||
DATE_FORMAT(A.BLOCK_REGIST_PNTTM,'%Y-%m-%d %H:%i:%S') AS blockRegistPnttm
|
|
||||||
FROM HACK_IP A
|
|
||||||
LEFT JOIN (
|
|
||||||
SELECT CODE_NM , CODE , CODE_DC
|
|
||||||
FROM LETTCCMMNDETAILCODE
|
|
||||||
WHERE USE_AT = 'Y'
|
|
||||||
AND CODE_ID = 'ITN029'
|
|
||||||
) B ON A.BLOCK_YN = B.CODE /** 차단설정 */
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
<isEqual property="searchCondition" compareValue="" >
|
|
||||||
AND (
|
|
||||||
A.HACK_USER_ID LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
OR A.WRONG_CNT = #searchKeyword#
|
|
||||||
OR A.ACCESS_IP LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
)
|
|
||||||
</isEqual>
|
|
||||||
|
|
||||||
<isEqual property="searchCondition" compareValue="1">
|
|
||||||
AND A.HACK_USER_ID LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="2">
|
|
||||||
AND A.WRONG_CNT = #searchKeyword#
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="2">
|
|
||||||
AND A.ACCESS_IP LIKE CONCAT ('%', #searchKeyword#,'%')
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchCondition2">
|
|
||||||
AND A.BLOCK_YN = #searchCondition2#
|
|
||||||
</isNotEmpty>
|
|
||||||
ORDER BY 1=1
|
|
||||||
<isNotEmpty property="searchSortCnd">
|
|
||||||
,$searchSortCnd$
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchSortOrd">
|
|
||||||
$searchSortOrd$
|
|
||||||
</isNotEmpty>
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectIgnoreIpLoginLogList" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
SELECT
|
|
||||||
COUNT(0) OVER() AS totCnt
|
|
||||||
, DATE_FORMAT(M2.CREAT_DT,'%Y-%m-%d') AS creatDt
|
|
||||||
, M2.CONECT_IP AS connectIp
|
|
||||||
, M2.ACCESS_CNT AS accessCnt
|
|
||||||
, DATE_FORMAT(M2.ACCESS_MIN_DT,'%H:%i') AS accessMinDt
|
|
||||||
, DATE_FORMAT(M2.ACCESS_MAX_DT,'%H:%i') AS accessMaxDt
|
|
||||||
/*, M2.ACCESS_DIFF_MINUTE AS accessDiffMinute*/
|
|
||||||
, TIME_FORMAT(SEC_TO_TIME(M2.ACCESS_DIFF_MINUTE * 60), '%H시간 %i분') AS accessDiffMinute
|
|
||||||
, ROUND(M2.ACCESS_CNT / M2.ACCESS_DIFF_MINUTE) AS clickByMinute
|
|
||||||
, M2.IGNORE_NO AS ignoreNo
|
|
||||||
, M2.IGNORE_YN AS ignoreYn
|
|
||||||
, M2.loginCnt
|
|
||||||
/*
|
|
||||||
, (SELECT COUNT(0)
|
|
||||||
FROM LETTNLOGINLOG SL WHERE DATE_FORMAT(SL.CREAT_DT,'%Y-%m-%d') = DATE_FORMAT(M2.CREAT_DT,'%Y-%m-%d') AND SL.CONECT_IP = M2.CONECT_IP AND SL.CONECT_ID != ''
|
|
||||||
) loginCnt
|
|
||||||
*/
|
|
||||||
FROM (
|
|
||||||
SELECT
|
|
||||||
M.CREAT_DT
|
|
||||||
, M.CONECT_IP
|
|
||||||
, M.ACCESS_CNT
|
|
||||||
, M.loginCnt
|
|
||||||
, M.ACCESS_MIN_DT
|
|
||||||
, M.ACCESS_MAX_DT
|
|
||||||
, IF(M.ACCESS_DIFF_MINUTE = 0, 1, M.ACCESS_DIFF_MINUTE) AS ACCESS_DIFF_MINUTE
|
|
||||||
, IFNULL(A.IGNORE_NO, 0) IGNORE_NO
|
|
||||||
,CASE
|
|
||||||
WHEN A.IGNORE_IP IS NULL
|
|
||||||
THEN 'N'
|
|
||||||
ELSE 'Y'
|
|
||||||
END AS IGNORE_YN
|
|
||||||
|
|
||||||
FROM (
|
|
||||||
SELECT
|
|
||||||
DATE_FORMAT(CREAT_DT,'%Y%m%d') AS CREAT_DT
|
|
||||||
, CONECT_IP
|
|
||||||
, sum(if (CONECT_ID!='',1,0)) loginCnt
|
|
||||||
, COUNT(0) ACCESS_CNT
|
|
||||||
, MIN(CREAT_DT) ACCESS_MIN_DT
|
|
||||||
, MAX(CREAT_DT) ACCESS_MAX_DT
|
|
||||||
, TIMESTAMPDIFF(MINUTE, MIN(CREAT_DT), MAX(CREAT_DT)) AS ACCESS_DIFF_MINUTE
|
|
||||||
FROM LETTNLOGINLOG
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty prepend="AND" property="searchStartDate">
|
|
||||||
<![CDATA[
|
|
||||||
DATE_FORMAT(CREAT_DT, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d')
|
|
||||||
]]>
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty prepend="AND" property="searchEndDate">
|
|
||||||
<![CDATA[
|
|
||||||
DATE_FORMAT(CREAT_DT, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d')
|
|
||||||
]]>
|
|
||||||
</isNotEmpty>
|
|
||||||
GROUP BY DATE_FORMAT(CREAT_DT,'%Y%m%d'), CONECT_IP
|
|
||||||
) M
|
|
||||||
LEFT OUTER JOIN MJ_IGNORE_IP A
|
|
||||||
ON A.IGNORE_IP = M.CONECT_IP
|
|
||||||
WHERE (ROUND(M.ACCESS_CNT / M.ACCESS_DIFF_MINUTE) >= 1) AND (M.ACCESS_CNT >= 50)
|
|
||||||
) M2
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
<isEqual property="searchCondition" compareValue="" >
|
|
||||||
AND M2.CONECT_IP LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="1">
|
|
||||||
AND M2.CONECT_IP LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
|
||||||
|
|
||||||
<isNotEmpty property="searchIgnoreYn">
|
|
||||||
AND M2.IGNORE_YN = #searchIgnoreYn#
|
|
||||||
</isNotEmpty>
|
|
||||||
|
|
||||||
<isNotEmpty prepend="AND" property="searchStartDate">
|
|
||||||
<![CDATA[
|
|
||||||
DATE_FORMAT(CREAT_DT, '%Y-%m-%d') >= DATE_FORMAT(#searchStartDate#, '%Y-%m-%d')
|
|
||||||
]]>
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty prepend="AND" property="searchEndDate">
|
|
||||||
<![CDATA[
|
|
||||||
DATE_FORMAT(CREAT_DT, '%Y-%m-%d') <= DATE_FORMAT(#searchEndDate#, '%Y-%m-%d')
|
|
||||||
]]>
|
|
||||||
</isNotEmpty>
|
|
||||||
|
|
||||||
ORDER BY 1=1
|
|
||||||
<isNotEmpty property="searchSortCnd">
|
|
||||||
,$searchSortCnd$
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchSortOrd">
|
|
||||||
$searchSortOrd$
|
|
||||||
</isNotEmpty>
|
|
||||||
, accessCnt desc
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectIgnoreIpList" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
SELECT
|
|
||||||
COUNT(A.IGNORE_NO) OVER() AS totCnt,
|
|
||||||
A.IGNORE_NO AS ignoreNo,
|
|
||||||
A.IGNORE_IP AS ignoreIp,
|
|
||||||
A.IGNORE_DC AS ignoreDc,
|
|
||||||
A.FRSTREGISTERID AS frstRegisterId,
|
|
||||||
DATE_FORMAT(A.FRSTREGISTPNTTM,'%Y-%m-%d %H:%i:%S') AS frstRegistPnttm
|
|
||||||
FROM mj_ignore_ip A
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
<isEqual property="searchCondition" compareValue="" >
|
|
||||||
AND A.IGNORE_IP LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="searchCondition" compareValue="1">
|
|
||||||
AND A.IGNORE_IP LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
|
||||||
ORDER BY 1=1
|
|
||||||
<isNotEmpty property="searchSortCnd">
|
|
||||||
,$searchSortCnd$
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchSortOrd">
|
|
||||||
$searchSortOrd$
|
|
||||||
</isNotEmpty>
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectIgnoreIpDetail" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
SELECT
|
|
||||||
A.IGNORE_NO AS ignoreNo,
|
|
||||||
A.IGNORE_IP AS ignoreIp,
|
|
||||||
A.IGNORE_DC AS ignoreDc,
|
|
||||||
A.FRSTREGISTERID AS frstRegisterId,
|
|
||||||
DATE_FORMAT(A.FRSTREGISTPNTTM,'%Y-%m-%d %H:%i:%S') AS frstRegistPnttm
|
|
||||||
FROM mj_ignore_ip A
|
|
||||||
WHERE 1=1
|
|
||||||
AND A.IGNORE_NO = #ignoreNo#
|
|
||||||
LIMIT 1
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectIgnoreIpCnt" parameterClass="hackIpVO" resultClass="java.lang.Integer">
|
|
||||||
SELECT
|
|
||||||
COUNT(A.IGNORE_NO)
|
|
||||||
FROM mj_ignore_ip A
|
|
||||||
WHERE 1=1
|
|
||||||
AND A.IGNORE_IP = #ignoreIp#
|
|
||||||
LIMIT 1
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<insert id="hackIpDAO.insertIgnoreIp" parameterClass="hackIpVO">
|
|
||||||
INSERT INTO mj_ignore_ip (
|
|
||||||
IGNORE_IP,
|
|
||||||
IGNORE_DC,
|
|
||||||
FRSTREGISTERID,
|
|
||||||
FRSTREGISTPNTTM
|
|
||||||
)
|
|
||||||
VALUES (
|
|
||||||
#ignoreIp#,
|
|
||||||
#ignoreDc#,
|
|
||||||
#frstRegisterId#,
|
|
||||||
now()
|
|
||||||
)
|
|
||||||
</insert>
|
|
||||||
|
|
||||||
<delete id="hackIpDAO.deleteIgnoreIp" parameterClass="hackIpVO" >
|
|
||||||
DELETE FROM mj_ignore_ip
|
|
||||||
WHERE 1=1
|
|
||||||
AND IGNORE_NO = #ignoreNo#
|
|
||||||
</delete>
|
|
||||||
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectHighTrafficNotIgnoreIp" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
|
|
||||||
SELECT
|
|
||||||
M3.CONECT_IP AS accessIp
|
|
||||||
, M3.CNT accessCnt
|
|
||||||
, M3.IGNORE_YN
|
|
||||||
FROM (
|
|
||||||
SELECT
|
|
||||||
M2.CONECT_IP
|
|
||||||
, M2.CNT
|
|
||||||
,CASE
|
|
||||||
WHEN A.IGNORE_IP IS NULL
|
|
||||||
THEN 'N'
|
|
||||||
ELSE 'Y'
|
|
||||||
END AS IGNORE_YN
|
|
||||||
FROM (
|
|
||||||
SELECT
|
|
||||||
M.CONECT_IP
|
|
||||||
, M.CNT
|
|
||||||
FROM (
|
|
||||||
SELECT
|
|
||||||
CONECT_IP
|
|
||||||
, COUNT(0) AS CNT
|
|
||||||
FROM LETTNLOGINLOG
|
|
||||||
WHERE CREAT_DT > date_add(now(), interval -5 MINUTE)
|
|
||||||
/*
|
|
||||||
TIMESTAMPDIFF(MINUTE, NOW(), CREAT_DT) > -5
|
|
||||||
*/
|
|
||||||
AND CONECT_ID = ''
|
|
||||||
GROUP BY CONECT_IP
|
|
||||||
) M
|
|
||||||
WHERE M.CNT >= 300
|
|
||||||
ORDER BY M.CNT DESC
|
|
||||||
) M2
|
|
||||||
LEFT OUTER JOIN MJ_IGNORE_IP A
|
|
||||||
ON A.IGNORE_IP = M2.CONECT_IP
|
|
||||||
) M3
|
|
||||||
WHERE M3.IGNORE_YN = 'N'
|
|
||||||
AND M3.CONECT_IP!='119.193.215.98'
|
|
||||||
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<delete id="hackIpDAO.deleteIgnoreIpByIp" parameterClass="hackIpVO" >
|
|
||||||
DELETE FROM mj_ignore_ip
|
|
||||||
WHERE 1=1
|
|
||||||
AND IGNORE_IP = #ignoreIp#
|
|
||||||
</delete>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectHackIpVO" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
SELECT
|
|
||||||
A.HACK_ID AS hackId,
|
|
||||||
A.HACK_USER_ID AS hackUserId,
|
|
||||||
A.ACCESS_IP AS accessIp,
|
|
||||||
A.REGISTER_ID AS registerId,
|
|
||||||
A.FRST_REGIST_PNTTM AS frstRegistPnttm
|
|
||||||
FROM HACK_IP A
|
|
||||||
WHERE 1=1
|
|
||||||
<isNotEmpty property="hackId">
|
|
||||||
AND HACK_ID = #hackId#
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="accessIp">
|
|
||||||
AND ACCESS_IP = #accessIp#
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="blockYn">
|
|
||||||
AND BLOCK_YN = #blockYn#
|
|
||||||
</isNotEmpty>
|
|
||||||
LIMIT 1
|
|
||||||
|
|
||||||
</select>
|
|
||||||
|
|
||||||
<delete id="hackIpDAO.deleteHackIp" parameterClass="hackIpVO" >
|
|
||||||
DELETE FROM HACK_IP
|
|
||||||
WHERE 1=1
|
|
||||||
AND HACK_ID = #hackId#
|
|
||||||
</delete>
|
|
||||||
|
|
||||||
|
|
||||||
<insert id="hackIpDAO.insertHackIp" parameterClass="hackIpVO">
|
|
||||||
INSERT INTO HACK_IP(
|
|
||||||
HACK_ID,
|
|
||||||
HACK_USER_ID,
|
|
||||||
ACCESS_IP,
|
|
||||||
FRST_REGIST_PNTTM,
|
|
||||||
REGISTER_ID
|
|
||||||
)VALUES(
|
|
||||||
#hackId#,
|
|
||||||
#hackUserId#,
|
|
||||||
#accessIp#,
|
|
||||||
now(),
|
|
||||||
#registerId#
|
|
||||||
)
|
|
||||||
</insert>
|
|
||||||
|
|
||||||
<update id="hackIpDAO.updateHackIp" parameterClass="hackIpVO">
|
|
||||||
UPDATE HACK_IP SET WRONG_CNT = WRONG_CNT+1 , FRST_REGIST_PNTTM = now() , HACK_USER_ID = #hackUserId#
|
|
||||||
WHERE HACK_ID = #hackId#
|
|
||||||
</update>
|
|
||||||
|
|
||||||
<insert id="hackIpDAO.updateBlockYN" parameterClass="hackIpVO">
|
|
||||||
UPDATE HACK_IP SET BLOCK_YN = #blockYn#
|
|
||||||
<isEqual property="blockYn" compareValue="Y">
|
|
||||||
, BLOCK_REGIST_PNTTM = now()
|
|
||||||
</isEqual>
|
|
||||||
<isEqual property="blockYn" compareValue="N">
|
|
||||||
, BLOCK_REGIST_PNTTM = null
|
|
||||||
</isEqual>
|
|
||||||
WHERE HACK_ID = #hackId#
|
|
||||||
|
|
||||||
<selectKey keyProperty="blockRegistPnttm" resultClass="String">
|
|
||||||
SELECT
|
|
||||||
DATE_FORMAT(BLOCK_REGIST_PNTTM,'%Y-%m-%d %H:%i:%S') AS blockRegistPnttm
|
|
||||||
FROM HACK_IP
|
|
||||||
WHERE HACK_ID = #hackId#
|
|
||||||
</selectKey>
|
|
||||||
</insert>
|
|
||||||
|
|
||||||
<select id="hackIpDAO.selectHackIpDetailList" parameterClass="hackIpVO" resultClass="hackIpVO">
|
|
||||||
SELECT
|
|
||||||
COUNT(HACK_ID) OVER() AS totCnt,
|
|
||||||
A.HACK_ID AS hackId,
|
|
||||||
A.HACK_USER_ID AS hackUserId,
|
|
||||||
A.ACCESS_IP AS accessIp,
|
|
||||||
A.REGISTER_ID AS registerId,
|
|
||||||
A.WRONG_CNT AS wrongCnt,
|
|
||||||
A.BLOCK_YN AS blockYn,
|
|
||||||
B.CODE_NM AS blockYnTxt,
|
|
||||||
A.FRST_REGIST_PNTTM AS frstRegistPnttm,
|
|
||||||
C.LOGIN_ID AS loginId,
|
|
||||||
C.LOGIN_DT AS loginDt,
|
|
||||||
C.LOGIN_YN AS loginYn,
|
|
||||||
C.LOGIN_LOG_DC AS loginLogDc
|
|
||||||
FROM HACK_IP A
|
|
||||||
LEFT JOIN (
|
|
||||||
SELECT CODE_NM , CODE , CODE_DC
|
|
||||||
FROM LETTCCMMNDETAILCODE
|
|
||||||
WHERE USE_AT = 'Y'
|
|
||||||
AND CODE_ID = 'ITN029'
|
|
||||||
) B ON A.BLOCK_YN = B.CODE /** 차단설정 */
|
|
||||||
LEFT JOIN MJ_LOGIN_LOG C
|
|
||||||
ON A.ACCESS_IP = C.LOGIN_IP
|
|
||||||
WHERE 1=1
|
|
||||||
AND A.HACK_ID = #hackId#
|
|
||||||
<isNotEmpty property="searchKeyword">
|
|
||||||
<isEqual property="searchCondition" compareValue="" >
|
|
||||||
AND (
|
|
||||||
C.LOGIN_ID LIKE CONCAT('%', #searchKeyword#, '%')
|
|
||||||
)
|
|
||||||
</isEqual>
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="loginYn">
|
|
||||||
AND IFNULL(C.LOGIN_YN, 'N') = #loginYn#
|
|
||||||
</isNotEmpty>
|
|
||||||
|
|
||||||
|
|
||||||
ORDER BY 1=1
|
|
||||||
<isNotEmpty property="searchSortCnd">
|
|
||||||
,$searchSortCnd$
|
|
||||||
</isNotEmpty>
|
|
||||||
<isNotEmpty property="searchSortOrd">
|
|
||||||
$searchSortOrd$
|
|
||||||
</isNotEmpty>
|
|
||||||
LIMIT #recordCountPerPage# OFFSET #firstIndex#
|
|
||||||
</select>
|
|
||||||
|
|
||||||
</sqlMap>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Altibase.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Altibase.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Altibase.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Altibase.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Altibase.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Altibase.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Altibase.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Cubrid.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Cubrid.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/com/EgovTemplate_SQL_Cubrid.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/com/EgovBBSUse_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/gmt/EgovGroupManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorManage_SQL_Cubrid.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/ram/EgovAuthorRoleManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/rgm/EgovAuthorGroup_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sec/rmt/EgovRoleManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sts/cst/EgovConectStats_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/cca/EgovCmmnCodeManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/ccc/EgovCmmnClCodeManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/cde/EgovCmmnDetailCodeManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/ccm/zip/EgovZipManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/log/clg/EgovLoginLog_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/log/lgm/EgovSysLog_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/mnu/mcm/EgovMenuCreat_SQL_Cubrid.xml"/>
|
|
||||||
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMenuManage_SQL_Cubrid.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/mnu/mpm/EgovMainMenu_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManage_SQL_Cubrid.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/sym/prm/EgovProgrmManageDtl_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uat/uap/EgovLoginPolicy_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uat/uia/EgovLoginUsr_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uss/ion/uas/EgovUserAbsnce_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/uss/umt/EgovUserManage_SQL_Cubrid.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/com/migration/SQL_Kcdf.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/com/migration/SQL_Ncms.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/addr/Addr_SQL_Mysql.xml"/> <!-- Addr -->
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/addr/AddrGroup_SQL_Mysql.xml"/> <!-- AddrGroup -->
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/addr/AddrTransHist_SQL_Mysql.xml"/> <!-- AddrGroup -->
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/addragency/AddrAgency_SQL_Mysql.xml"/> <!-- Addr agency -->
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,7 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/apikey/ApiKeyMng_SQL_Mysql.xml"/> <!-- api key list -->
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/apikey/ApiCallInfoMng_SQL_Mysql.xml"/> <!-- api call info -->
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/block/Block_SQL_Mysql.xml"/> <!-- Block -->
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/use/EgovCmmUse_SQL_Mysql.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/fms/EgovFile_SQL_Mysql.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cmm/read/Read_SQL_Mysql.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/orgChart/OrgChartManage_SQL_Mysql.xml"/><!-- 조직도 -->
|
|
||||||
<sqlMap resource="egovframework/sqlmap/com/uss/olh/hpc/EgovHpcm_SQL_mysql.xml"/><!-- 도움말 -->
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,6 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/mjo/conf/MjonConf_SQL_Mysql.xml"/> <!-- MjonConf -->
|
|
||||||
</sqlMapConfig>
|
|
||||||
@ -1,8 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!DOCTYPE sqlMapConfig PUBLIC "-//iBATIS.com//DTD SQL Map Config 2.0//EN"
|
|
||||||
"http://www.ibatis.com/dtd/sql-map-config-2.dtd">
|
|
||||||
|
|
||||||
<sqlMapConfig>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBBSMaster_SQL_Mysql.xml"/>
|
|
||||||
<sqlMap resource="egovframework/sqlmap/let/cop/bbs/EgovBoard_SQL_Mysql.xml"/>
|
|
||||||
</sqlMapConfig>
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user