This file contains hidden or 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
<!--/* | |
์ธํ ๋์คํ๋ ์ด ์ ์ฉ ์์ | |
icon : ์์ด์ฝ | |
name : ํ๋๋ช | |
label : ํ๋ ์ด์ค ํ๋ label | |
maxLength : ๊ธธ์ด | |
*/--> | |
<!--/* BEGIN :: ์ผ๋ฐ 1,2๋จ ํผ ์์ */--> | |
<div class="form-input" th:fragment="writeNV(icon, formName, name, label, maxLength)"> | |
<div class="ic-r-area"></div> |
This file contains hidden or 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
test.df |
This file contains hidden or 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
/** | |
* [์ซ์][๋ฌธ์์ด]์๋ฐ์ค๋ช (ํ์) (3~50๊ธ์) | |
*/ | |
static class SilmuconDescriptor { | |
private boolean isRequired; | |
private TypeDescriptor typeDescriptor; | |
private LengthDescriptor lengthDescriptor; | |
private String comments; | |
private String name; |
This file contains hidden or 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 javax.validation.constraints.Max; | |
import javax.validation.constraints.Min; | |
import javax.validation.constraints.NotEmpty; | |
import java.util.*; | |
import java.util.function.Function; | |
import java.util.stream.Collectors; | |
public class CodingDojangMineSweeper { |
This file contains hidden or 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.arahansa; | |
public class CIterator { | |
public static class Result{ | |
boolean done; | |
Object value; | |
public Result(boolean done) { | |
this.done = done; |
This file contains hidden or 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 org.springframework.beans.BeanWrapperImpl | |
import javax.validation.Constraint | |
import javax.validation.ConstraintValidator | |
import javax.validation.ConstraintValidatorContext | |
import javax.validation.Payload | |
import kotlin.reflect.KClass | |
@Target(AnnotationTarget.CLASS) | |
@Constraint(validatedBy = [StringMatchValidator::class]) |
This file contains hidden or 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 chap02.chap02_6; | |
import chap02.chap02_5.PolyFuncJava; | |
import chap03.chap03_2.JavaList; | |
import chap10.Foldable; | |
import java.util.ArrayList; | |
import java.util.Arrays; | |
import java.util.List; | |
import java.util.function.BiFunction; |
This file contains hidden or 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; | |
public class TryHelloWorld | |
{ | |
static class Point{ | |
int x,y; | |
public Point(int x, int y){ | |
this.x = x; |
This file contains hidden or 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
public class CustomLocaleResolver extends CookieLocaleResolver { | |
public void setSupportedLocales(List<Locale> locales) { | |
this.supportedLocales.clear(); | |
if (locales != null) { | |
this.supportedLocales.addAll(locales); | |
} | |
} | |
@Override |
This file contains hidden or 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
@RequestMapping("/arahansa") | |
@RestController | |
static class TestController { | |
List<String> list = Arrays.asList("test,1,2,3,4,5,6,7".split(",")); | |
// ์ ๊ทผ๊ฐ๋ฅํ ์ฃผ์ /arahansa/test | |
@GetMapping("/test") | |
public List<String> apiList() { | |
return list; | |
} |
NewerOlder