반응형
반응형
반응형


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


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}">



반응형

+ Recent posts