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
<!--/* | |
인풋 디스플레이 전용 요소 | |
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 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 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 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 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 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 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 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 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 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