본문 바로가기

개발하자

(326)
빅데이터 5/23 수업내용 빅데이터 = 거래 + 상호작용 + 관찰 빅데이터의 특징 Gartner(미국의 IT 리서치 회사)1.크기(Volume) : 일반적으로 수십 테라 바이트 혹은 수십 페타바이트 이상 규모의 데이터 속성을 의미2.속도(Velocity) : 대용량의 데이터를 빠르게 처리하고 분석할 수 있는 속성3.다양성(Variety) : 다양한 종류의 데이터를 의미 McKinsey & Company(미국의 경영컨설팅 회사인 맥킨지앤컴퍼니)일반적인 데이터베이스 관리도구가 저장·관리·분석할 수 있는 범위를 초과하는 규모의 데이터 IDC(미국의 IT 마켓리서치 회사 International Data Corporation)다양한 종류의 대규모 데이터로부터 저렴한 비용으로 가치를 추출하고 데이터의 초고속 수집·발굴·분석을 지원하도록 고..
nodejs 테스트 Microsoft Windows [Version 10.0.16299.248] (c) 2017 Microsoft Corporation. All rights reserved. C:\Users\goo30>node -v v8.9.4 C:\Users\goo30>node > 1+1 2 > console.log(1+1) 2 undefined > (To exit, press ^C again or type .exit) > C:\Users\goo30>dir C 드라이브의 볼륨: Windows 볼륨 일련 번호: C8EB-534C C:\Users\goo30 디렉터리 2018-02-21 오후 01:26 . 2018-02-21 오후 01:26 .. 2018-01-30 오후 04:33 .android 2018-02-06 오전 11..
poi 엑셀 다운로드 기능 @RequestMapping(value = "/selectMyUnionMbListExcel.do", method = RequestMethod.POST) public void selectMyUnionMbListExcel(HttpServletRequest request, HttpServletResponse response) throws SQLException, IOException { EduUnionMbVo vo = new EduUnionMbVo(); String deptCode = request.getParameter("deptCode") != null ? request.getParameter("deptCode") : ""; vo.setDeptCode(deptCode); List unionMblist = ..
const , let 변수선언 const express = require('express') //var 를 사용하는것은 금지!! 대신에 const 를 사용한다.(고정값만) 세미콜론도 금지 const mysql = require('mysql') const router = express.Router() const JSON = require('JSON') //let a = 1 //변동되는 값은 let으로 선언한다. module.exports = router
자바스크립트 천단위 콤마찍기 (정규식) function addCommas(x) { return x.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ","); }
jqGrid 컬럼 동적으로 숨기기, 표시하기 // 숨기기 $("#grid-EduPlan").jqGrid("hideCol", ["컬럼1",”컬럼2”]); // 표시하기 $("#grid-EduPlan").jqGrid("showCol", ["컬럼1",”컬럼2”]);
목록그리드에서는 보이지만 보기창(view)에서는 숨김처리 viewable: true
기본태그이용하여 화면만들기 문제) 기본 태그를 이용하여 다음과 같은 화면을 출력해보세요~ 풀이 HTML Header menu1 menu2 오시는 길은 클릭하세요 본문1 Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electroni..