목록WEB (53)
hello world
환경 세팅하고 서버 실행하는데 아래와 같은 오류가 계속 뜸.. TLS10 is not accepted by client preferences [TLS12] jdk .. The server selected protocol version TLS10 is not accepted by client preferences Caused by: com.microsoft.sqlserver.jdbc.SQLServerException: The driver could not establish a secure connection to SQL Server by using Secure Sockets Layer (SSL) encryption. Error: "The server selected protocol version TLS10..
1. 윈도우 버전 확인 blog.naver.com/PostView.nhn?blogId=winsweet&logNo=221717217051&parentCategoryNo=&categoryNo=6&viewDate=&isShowPopularPosts=true&from=search 윈도우10 버전 확인 방법 2가지와 업데이트 방법 윈도우10 버전을 확인해보면 대규모 업데이트를 나타내는 yymm 형식의 4자리 숫자로 표시되며 현재 포스팅 ... blog.naver.com 2.Microsoft .NET Framework 3.5 설치 / 오류 발생시 해결법 [출처] Microsoft .NET Framework 3.5 설치 / 오류 발생시 해결법|작성자 지킬블로그 참조 blog.naver.com/PostView.nhn?..
putty에서 pem 파일을 이용해 서버에 접속할 수는 없다. 그래서 .pem 파일을 .ppk 파일로 변환이 필요하다. puttygen 이라는 프로그램을 사용해서 바꿀 수 있다. 아래의 사이트에서 http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html Download PuTTY: latest release (0.74) This page contains download links for the latest released version of PuTTY. Currently this is 0.74, released on 2020-06-27. When new releases come out, this page will update to contain t..
MySql 에서 두 날짜간 차이를 가져올 때 사용하는 함수 DATEDIFF : 단순히 일 차이를 가져올 때 사용하는 함수 DATEDIFF(END_DATE, START_DATE); 연, 분기, 월 ,주, 일, 시 , 분, 초를 지정하여 가져올때 사용하는 함수 TIMESTAMPDIFF 함수 단위 SECOND(초)/MINUTE(분)/HOUR(시)/DAY(일)/WEEK(주)/MONTH(달)/YEAR(년)/QUARTER(분기) TIMESTAMPDIFF(단위, END_DATE, START_DATE); DATEADD: 단순히 일 차이를 가져올 때 사용하는 함수 1) dateadd(day,1,getdate()) // 1일 더하기 2) dateadd(month,1,getdate()) // 1월 더하기 2) dateadd..
gson 사용 하기위해 pom.xml 등록 com.google.code.gson gson 2.8.4 1. JSONObject 를 VO(DTO)에 매핑 gson.fromJson(JSONObject변수.toString(), VO(DTO).class); Gson gson = new Gson(); dataVo vo = gson.fromJson(jsonObject.toString(), dataVo.class); 2. dataVo 에서는 아래와 같이 @serializedName 으로 매핑 시켜줌 public class dataVo{ @SerializedName("ID") private String id; @SerializedName("Succ") private int Sucss; } -JsonProperty를 사용..
-EXPRESS 란 ? Node.js를 위한 빠르며 간편한 프레임워크 (개발을 빠르고 손쉽게 !) -EXPRESS 설치 방법 expressjs.com/ko/starter/installing.html Express 설치 설치 Node.js가 이미 설치되었다고 가정한 상태에서, 애플리케이션을 보관할 디렉토리를 작성하고 그 디렉토리를 작업 디렉토리로 설정하십시오. $ mkdir myapp $ cd myapp npm init 명령을 이용하여 애플� expressjs.com 나는 git bash를 통해 설치 했다 . 1.폴더 생성 2.npm init 3. npm install --save express -Express 기본 예제 var express = require('express'); var app = exp..
Git Bash는 아래 링크에서 다운! https://git-scm.com/download Git - Downloads Downloads Mac OS X Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific git-scm.com nodeJs 폴더에서 우클릭 Git bash Here 클릭 hello.js 를 git bash에서 실행해주기 위해..
1.node.js 프로젝트 생성 1.NODETEST 프로젝트명을 가진 프로젝트 생성 3.index.js 파일 생성 4.index.js 에 아래 코드 작성 var http = require('http'); var server = http.createServer(function (request, response) { response.writeHead(200, {"Content-Type": "text/plain"}); response.end("Hello World~~!\n"); }); server.listen(8000); console.log("Server running"); 4.CMD 창에서 프로젝트가 저장된 경로를 찾는다. cd 경로 node js파일 찾은 뒤 node index.js 명령어 입력 후 액세..