반응형

분류 전체보기 875

JSP MultipartRequest upload

1. WEB-INF/lib에 cos.jar 추가 2. form 태그에 enctype="multipart/form=data" 속성 추가 3. 받는쪽에 아래와 같이 추가 - import com.oreilly.servlet.* - com.oreilly.servlet.multipart.DefaultFileRenamePolicy 4. request를 받는다. - MultipartRequest multi=new MultipartRequest(request, "저장경로", "파일 크기 제한", new DefaultFileRenamePolicy()); 5. form 태그 값 받는 방법 - String prcm_curr = multi.getParameter("abc"); 6. 파일명 받는 방법 - multi.getFil..

웹 개발 2019.07.24

[eclipse] freemarker code assist

Freemark는 현재 java에서 가장 대중적인 View Template Engine입니다. 자바 객체에서 데이터를 생성해서 템플릿에 넣어주면 freemarker에서 템플릿에 맞게 변환하여 HTML 파일을 생성합니다. freemark는 웹기반 프레임워크가 아니고 완전한 POJO기반 템플릿 엔진입니다. * freemarker api - http://freemarker.sourceforge.net/docs/index.html 1. help - install new software 메뉴로 진입 2. work with에 all available sites 선택 3. freemarker 검색하여 설치 4. window - preferences로 진입 5. File Associations에서 *.ftl에 대해 J..

개발도구/IDE 2019.07.24

++i 와 i = i + 1 의 비교

++i 와 i = i + 1의 결과는 같지만 실제로 연산이 수행되는 과정은 다르다. ++i가 더 적은 명령만으로 작업을 수행하기 때문에 더 빠르다. * 바이트 코드 비교 수식 i = i + 1 ++i 컴파일된 코드 istore_1 iload_1 iconst_1 iadd istore_1 istore_1 iinc 1 1 위의 표는 컴파일 했을 때 새엉되는 클래스 파일(*.class)의 바이트코드 명령어를 비교한 것이다. i = i + 1은 5개의 명령으로, ++i는 2개의 명령으로 이루어져 있다.

웹 개발 2019.07.24

[jquery] attr과 prop 차이 (attr vs prop)

1. 개요 jQuery 1.6/1.6.1에서 .attr()와 .prop()로 나눔 ( checkbox에 버그가 존재해서 ) * 공식 API 문서 ( http://api.jquery.com/prop/ ) The difference between attributes and properties can be important in specific situations. Before jQuery 1.6, the .attr() method sometimes took property values into account when retrieving some attributes, which could cause inconsistent behavior. As of jQuery 1.6, the .prop() method pr..

웹 개발 2019.07.24

[mybatis] insert return [serial]

mybatis를 사용하다가 table의 키가 serial일 때 insert된 키의 값이 필요할 경우가 있는데 아래와 같이 사용합니다. insert문 keyProperty : map의 survey_id라는 이름의 변수 (혹은 키)에 값을 넣겠다는 의미 keyColumn : db의 어떤 column에서 값을 가져올지 정하는 값. keyColumn을 생략하면 default로 가장 앞의 key를 가져오는데 만약 pk가 여러개의 column이 묶여 있을 경우 문제가 될 수 있다. 위와 같이 설정 할 경우 map에 survey_id라는 key의 value를 사용 할 수 있습니다.

728x90
반응형
loading