전체 글(137)
-
[NodeJS] 내장모듈 사용
내장모듈에서 자주 사용하는 모듈에 대해서 설명을 해드리겠습니다. os 모듈 : OS 관련 정볼르 보여주고, 전역객체인 Process 객체와 비슷하지만, 좀 더 많은 정보를 제공하는 모듈 var os = require("os");console.log(os.hostname()); // 호스트 이름console.log(os.type()); // os 이름console.log(os.platform()); // 플랫폼console.log(os.totalmem()); // 시스템 총 메모리console.log(os.freemem()); // 시스템 가용 메모리console.log(os.cpus()); // cpu 정보 객체console.log(os.networkInterfaces()); // 네트워크 인터페이스 정..
2017.11.07 -
[NodeJS] Eclipse 연동 - plugin 설치
1. Eclipse plugin 설치 현 시점에 Eclipse Neon 사용하고 있음. - Eclipse Menu > Help > Eclipse Marketplace 실행- nodeclipse 검색 및 Install 이미지는 이미 설치되어 있는 것을 캡쳐 한것이기 때문에 이렇게 나온것이고.. 모두 설치 하면 됨.. 2. Test - NodeJS project 생성 - Project Root에 Javascript 생성 var http = require("http"); http.createServer(function(request, response) { response.writeHead(200, {"Content-Type" : "text/html"});response.end("Hello NodeJs Star..
2017.11.07 -
[NodeJs] 다운로드 및 설치
1. node.js 다운로드 및 설치 url : https://nodejs.org/en/ 위의 항목에서 안정성을 위하여 8.9.0을 다운로드 하여 사용. 절차에 따라 설치하면 NodeJs 환경은 완료. 2. Test 이와 같이 나오면 정상..
2017.11.07 -
특정 구간 검색하기
예를 들어 :::로 시작해서 :::로 끝나는 구간을 찾고 싶을때... ::::제목 : 정규식 구간 검색::: :::내용 : 정규식을 이용한 구간 검색::: 이렇게 있을 때 검색하는 방법 /:::.*?:::/g 이렇게 이용하면 :::와 ::: 사이에 어떠한 문자 또는 특수문자가 와도 다 검색한다.
2017.10.19 -
시작
Spring Boot 설정 관련하여 초기 셋팅해 주는 URL : https://start.spring.io/ 1. 메이븐 설정 4.0.0 com.iinnoincSpringBootTest0.0.1-SNAPSHOTjar SpringBootTestDemo project for Spring Boot org.springframework.bootspring-boot-starter-parent1.5.7.RELEASE UTF-8UTF-81.8 org.springframework.bootspring-boot-starter-testtest org.mybatis.spring.bootmybatis-spring-boot-starter1.3.1 org.springframework.bootspring-boot-starter-jdb..
2017.10.16 -
ArrayList 정렬 및 자르기
1. ArrayList 정렬 Collections sort(students, new Comparator() { public int compare(Student s1,Student s2) { if(s1.getName() != null && s2.getName() != null && s1.getName().comareTo(s1.getName()) != 0) { return s1.getName().compareTo(s2.getName()); } else { return s1.getAge().compareTo(s2.getAge()); } } ); 2. ArrayList 자르기 List numbers = new ArrayList( Arrays.asList(5,3,1,2,9,5,0,7) ); List head = ..
2016.03.07