1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 const http = require('http'); const server = http.createServer((req,res) =>{ console.log(req.url,req.method,req.headers); //process.exit(); res.setHeader('Content-Type','text/html'); // 내용을 text 타입 html 형식으로 보낼게 res.write('') res.write('') // hrml 타이틀과 헤더부분 res.write('hello print') // body 부분에 서버에 나올 내용값 입력 ~ res.write('') res.end(); // 서버에서 >> 클라이언트로 보내는거 여기에..
기존
1 2 3 4 5 6 7 8 9 10 11 const http = require('http'); //http 를 서버 생성하기위해불러옴 const server = http.createServer((req,res) =>{ // 서버를생성 = 서버만듬 console.log(req); // req= requeest 요청이 온걸계속 받기 .!! process.exit(); // 서버 요청 request 중단 하기 위할때 사용 }) server.listen(3000); // node.js 가 들어오는 요청에대해서 계속 데이터 받기 cs 서버 종료를 안하게 되면 위에 빨간 커서가 저렇게 진행됨 process.exit 로 실행하면 요청한것만 다 읽은후 서버 종료 다시 실행되기전값으로 되돌아옴.
간단하네.. 1 2 3 4 5 6 7 8 9 10 11 12 13 const http = require('http'); // 읽는 키워드 function rqLis(req,res){ //request,response } http.createServer(rqLis); // 서버 생성 메서드 //require -- > 파일을 불러오는 키워드 cs 첫번째 방법 1 2 3 4 5 6 const http = require('http'); http.createServer(function(req,res){ // 익명의 함수를 호출하는것 }) Colored by Color Scripter cs 2번째 방법 1 2 3 4 5 6 const http = require('http'); http.createServer((re..
AdminController.java => 컨트롤러 AdminDAO. 인터페이스 java AdminDAOImpl.java 인터페이스 구현클랜스 .MemberVo.java 데이터 객체 레코드 저장 admin.xml 매핑..sql login.jsp admin.jsp 로그인 ADminDao 1 2 3 4 5 6 7 8 9 package com.example.spring05.model.member; public interface AdminDao { String login(MemberVo vo); } Colored by Color Scripter cs ADminDaoimpl.java 인터페이스 구현 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 2..
Controller 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 @Controller public class uploadController { //첨부파일 저장할 디렉토리 @Resource(name = "upload_path") String upload_path; @RequestMapping("/upload/input.do") public String input() { return "upload/input"; //views /upload/input.jsp } @RequestMapping("upload/upload.do") public ModelAndVi..
https://mvnrepository.com/artifact/commons-fileupload/commons-fileupload/1.4 Maven Repository: commons-fileupload » commons-fileupload » 1.4 The Apache Commons FileUpload component provides a simple yet flexible means of adding support for multipart file upload functionality to servlets and web applications. commons-fileupload commons-fileupload 1.4 // https://mvnrepository.com/artifact/commons ..