반응형
반응형
반응형


정부표준 프레임워크라고 나와서 한번 설치 시도해봄.


GEF

 - Available Software Sites 에 이미 등록되어 있음.

 - 검색 후 설치.


amateras ERD/ UML

 - 이클립스에서 Available Software Sites 에 추가 후 설치.

 - http://takezoe.github.io/amateras-update-site

 - Amateras Modeler

   Lightweight graphical UML and ER diagram editor



플러그인 직접설치 시 디렉토리.

/Applications/Eclipse.app/Contents/Eclipse/plugins


반응형
반응형

JSTL 조건식 사용할 때..


// eq

// - ==
<c:if test="${name eq '이름'}">

<c:if test="${name eq null}">

<c:if test="${age eq 20}">


// ne

// - !=

<c:if test="${name ne '이름'}">

<c:if test="${name ne null}">

<c:if test="${age ne 20}">


// empty

// - null, 빈 문자열, 빈 배열, 빈컬렉션 검사

<c:if test="${empty name}">

<c:if test="${!empty name}">

<c:if test="${empty list}">

<c:if test="${!empty map}">



반응형
반응형



ajax 로 array data request 시 서버에서 받는 방법.



var a = [];

a[0] = 1;

a[1] = 2;

a[2] = 3;


$.ajax({


url : "/test.json",

type : "POST",

data: {

'array_data' : a

},

dataType: 'json',

success: function(data) {

},

error: function(data, status, err){

}

});





Spring 에서 요렇게 받을수 있다.

@RequestParam(value = "array_data[]", required = false) List<String> arrayData


sprint 3.x, jquery 1.10.x




반응형

+ Recent posts