everydayminder
import org.springframework.validation.BindException; import org.springframework.validation.ValidationUtils; import org.springframework.web.bind.ServletRequestDataBinder; ... //MultiAcitionController의 bindObject()를 다음과 같이 override한다. protected BindException bindObject(HttpServletRequest request, Object command, Validator validator) throws Exception { ServletRequestDataBinder binder = createBinder..
결국 사전에서 찾아보게 되었다. 그 전에는 다른 뜻이 있는 줄 몰랐는데. 'edge있게~' 업계에서는 많이 쓰는 모양이네. 사전에 보면, 다음의 뜻이 있다. If you say that someone or something has an edge, you mean that they have a powerful quality. ex) Featuring new bands gives the show an edge. Greene's stories had an edge of realism. from dic.naver.com
verge 1. brink, point, edge, threshold 2. border, edge, margin, limit, boundary, threshold, brimcome near to, approach, border on, resemble, incline to, be similar to, touch on... 가장자리, 경계 on the verge of : ~의 경계에 있으므로 뭔가 변화가 일어나기 직전. 막 ~ 하려고 하는 중인. ex) The country was on the verge of becoming prosperous and successful. Carole was on the verge of tears. cf. brink
eUML2라는 eclipse 플러그인을 설치하여, 기존에 작성했던 java project의 클래스 다이어그램 및 클래스 연관 관계를 쉽게 그려서 볼 수 있다. 라이센스는 'free' 버전과 'studio' 버전이 있으므로, free를 골라서 설치하자. eclipse에서 자신의 eclipse 버전에 맞는 것으로 골라서, download 받고 설치하면 된다. 대략 다음의 장점이 있다고 광고하고 있다. Real-time code/model synchronization UML2.1 compliant and support of OMG XMI Advanced reversed engineering Powerful true dependency analyze tools JDK 1.4 and 1.5 support Cust..
경기와 관련된 뜻만 있는 줄 알았는데, protest 와 관련된 podcast를 듣다가 다른 뜻이 있는 줄 알게되었다. A rally is a large public meeting that is held in order to show support for something such as a political party. ex) About three thousand people held a rally to mark international human rights day.
우리한테 익숙한 fast는 형용사/부사이다. 그런데, fast가 동사로도 쓰이는 경우가 있다. fast의 뜻 to eat no food for a period of time: 동사로는 단식하다. (종교적으로) 정진하다의 뜻을 갖는다. 단식하다. I have been fasting all day. (하루종일 굶었다) (종교적으로) 정진하다. fast on bread and water (빵과 물만 먹고 정진하다)
작성한 자바코드를 표준 doclet의 javadoc으로 돌리면, package의 설명이 휑허니 빈칸으로 나온다. 어떻게 주석을 달면, package에 대한 설명을 넣을 수 있을까? package의 entry에 package.html을 작성해 주면 이 문제가 해결된다. 만약 package ab.cd.ef.* 가 존재한다면, 디렉토리가 ab/cd/ef가 존재할 것이다. 따라서, ab/cd/ef/pacakge.html을 작성해주면 javadoc 실행시 package의 description을 채워준다. 이 때, 작성 형식은 매우 간단하다. 다음과 같이 기록하기만 하면 body 부분의 설명이 그대로 반영된다.
www.doclet.com에 소개된 바와 같이 여러 종류의 doclet이 있으나, 그 중 몇몇은 javaodc의 출력 형태를 pdf로 직접 지정할 수 있다. LaTex를 쓰는 방법은 LaTex의 특성상 가독성이 좋은 결과물을 만들 것으로 기대되나, 별도로 변환을 한번 더 해줘야 하는 번거로움이 있으므로 이왕이면 손이 덜 가는 방법을 찾아보게 되었다. www.doclet.com에 소개된 library 중 하나인, AurigaDoclet(http://aurigadoclet.sourceforge.net/)을 사용해 보자. 사용법은 간단하다. ANT에서 지정할 수 있는 설정은, package-names package names source-path path of the java source files aurig..
모두 알고 있는 의문문의 형태지만, 막상 내가 이런 형식의 문장을 쓴다면 상대방이 어떻게 받아들일지 생각해 보고 쓰자. Isnt' she leaving? : 듣는 사람은, '저 사람은 그녀가 떠날 것이라고 생각하고 있군' 이라고 느낄 것이다. Is she leaving : 든는 사람은, '저 사람은 그녀가 떠나는지 아닌지 모르고 있군'이라고 느낄 것이다. 스티비 원더의 Isn't she lovely? 라는 노래를 보면, 오히려 명확해진다. Is she lovely? 와 Isn't she lovely? 후자는 분명히, she is lovely 라고 말하고 있다. 다 아는 얘기지만, 가려서 쓰자...
1. 각 클래스에 대해 table을 만든다 2. 각 속성에 대해 필드를 만들고, 적절한 타입을 할당한다. 필요시, 필드를 하위 필드의 조합으로 구성한다. 3. 한 개 또는 여러 필드의 조합으로 primary key를 선정한다. 선정 과정에서, 해당 키의 고유성이 보장되는지 충분히 검토한다. 4. Many-Many Relationship은, 한 개의 새로운 중간 클래스를 연계하여, 두 개의 1-Many relationship으로 분할하여 처리한다. 5. 1-Many relationship의 경우, 1쪽의 primary key를 Many 쪽에 foreign key로 등록하여 처리한다. 6. 1-1 relationship은 서로 비교하여, 해당 정보를 보다 필요로 하는 쪽으로 나머지 클래스의 primary k..
Feature in Model Technique Used in Relational Database Class add a table with a primary key Attribute add a field with an appropriate data type to the table Object add a row of data to the table 1-Many Relationship use a foreign key, i.e., a reference to a particular row (or object) in the table at the 1 end of the relationship Many-Many Relationshop add a new table and two 1-Many relationships ..
종속과목강문계란? 옛날에 학교에서 배웠던 종속과목강문계가 영어로 무엇인지 궁금했다. Database 책을 보다가 우연히 예제에서 보게 되어, 더 찾아보았다. 쳬계 종
Network Working Group S. Knight Request for Comments: 2338 D. Weaver Category: Standards Track Ascend Communications, Inc. D. Whipple Microsoft, Inc. R. Hinden D. Mitzel P. Hunt Nokia P. Higginson M. Shand Digital Equipment Corp. A. Lindem IBM Corporation April 1998 Virtual Router Redundancy Protocol Status of this Memo This document specifies an Internet standards track protocol for the Interne..
Network Working Group T. Li Request for Comments: 2281 Juniper Networks Category: Informational B. Cole Juniper Networks P. Morton Cisco Systems D. Li Cisco Systems March 1998 Cisco Hot Standby Router Protocol (HSRP) Status of this Memo This memo provides information for the Internet community. It does not specify an Internet standard of any kind. Distribution of this memo is unlimited. Copyrigh..
twistedmatrix에서 callInThread()와 callFromThread()는 어떻게 다른 것일까? 무심코, 코드에서 callInThread()를 썼는데, 그 차이를 궁금해 하다가 문서 및 소스를 찾아보게 되었다. 1. The Twisted Documentation 보기 우선 살펴본, The Twisted Documentation에서는 callFromThread()는 thread-safe하지 않은 메소드를 thread-safe하게 실행시킬 때 사용한다고 한다. 다른 설명으로는, thread-safe하지 않은 메소드를 메인 이벤트 루프에서 실행되도록 스케쥴한다고 한다. from twisted.internet import reactor def notThreadSafe(x): """ do somet..