This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.knkcorp.justget.test; | |
import java.util.Arrays; | |
import org.junit.Test; | |
/** | |
* Description : | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.knkcorp.tms.common.mail; | |
import java.util.List; | |
import javax.mail.Message; | |
import org.springframework.stereotype.Component; | |
@Component | |
public interface BaseMailSender { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.onkeydown = function(evt) { | |
evt = evt || window.event; | |
console.log(evt.keyCode); | |
switch (evt.keyCode) { | |
case 27: //ESC | |
AdPlayer.vidplay(); | |
// 광고를 종료 하시겠습니까? | |
if (confirm('광고를 종료 하시겠습니까?')) { | |
location.href = '<%=CONTEXT_PATH%>/이동 경로..'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* <pre> | |
* Class Name : CattleController.java | |
* Description : | |
* Modification Information | |
* | |
* 수정일 수정자 수정내용 | |
* ──────────── ───────── ─────────────────────────────── | |
* 2016. 1. 11. ask 최초생성 | |
* </pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* <pre> | |
* Class Name : AddressController.java | |
* Description : | |
* Modification Information | |
* | |
* 수정일 수정자 수정내용 | |
* ──────────── ───────── ─────────────────────────────── | |
* 2016. 1. 4. ask 최초생성 | |
* </pre> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package oo.cjoext.service.allthat.common.cache; | |
public class AllthatCache { | |
private String name; | |
private int hitCount; | |
private Object object; | |
public AllthatCache() { | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.net.SocketTimeoutException; | |
import java.util.Iterator; | |
import java.util.List; | |
import org.apache.commons.collections.CollectionUtils; | |
import org.apache.commons.lang.StringUtils; | |
import org.apache.commons.logging.Log; | |
import org.apache.commons.logging.LogFactory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package proxy; | |
import java.lang.reflect.InvocationHandler; | |
import java.lang.reflect.Method; | |
public class DebugHandler implements InvocationHandler { | |
public DebugHandler() { | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<project default="main" basedir="."> | |
<echo message="pulling in property files"/> | |
<!-- | |
<copy todir="c:\test\kkkk\"> | |
<fileset dir="c:\test\" > | |
<include name="**/*.*" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.ArrayList; | |
import java.util.List; | |
import java.util.Map; | |
import org.mybatis.spring.support.SqlSessionDaoSupport; | |
import org.slf4j.Logger; | |
import org.slf4j.LoggerFactory; | |
import com.xxxxx.beans.SfProjectVerificationReport; |
NewerOlder