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
task "create-dirs" << { | |
sourceSets*.java.srcDirs*.each { it.mkdirs() } | |
sourceSets*.resources.srcDirs*.each { it.mkdirs() } | |
} |
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
@Controller | |
public class ClassLoaderController { | |
/** | |
* | |
* @param clazzName 패키지를 포함한 클래스명 ex) javax.servlet.http.HttpServlet | |
* @return | |
*/ | |
@RequestMapping(value = "/find/jar") | |
@ResponseBody |
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.kakao.order.common.config.database; | |
/** | |
* Created by jaceshim on 2017. 8. 23.. | |
*/ | |
public enum DataSourceType { | |
WRITE, READ | |
} |
NewerOlder