Delete: 4개의 글
Spring Data 란? Spring Data’s mission is to provide a familiar and consistent, Spring-based programming model for data access while still retaining the special traits of the underlying data store. It makes it easy to use data access technologies, relational and non-relational databases, map-reduce frameworks, and cloud-based data services. This is an umbrella project which contains many subprojec..
MySQL 모듈 npm install mysql require('mysql') MySQL Connection var mysql = require('mysql'); var conn = mysql.createConnection({ host: 'localhost', user : 'root', password : 'admin', database : 'test' }); conn.connect(function(err){ if(err){ console.log(err); }else{ console.log('mysql connected.'); } }); SELECT conn.query('SELECT * FROM BOARD', function(err, results, fields){ //console.log(argumen..
들어가기 Python에서 MySQL을 연동하는 방법입니다. 설치부터 접속, SELECT, INSERT, DELETE, 그리고 UPDATE고에 대해서 정리해 놓은 내용입니다. 설치하기 $ pip install MySQL-python 접속하기 import MySQLdb con = MySQLdb.connect('192.168.1.198', 'username', 'password', 'database') cur = con.cursor(MySQLdb.cursors.DictCursor) 여기서 MySQLdb.cursors.DictCursor를 사용하는 이유는 query를 통해 데이터를 얻을때 python의 dict로 얻기 위한 방법입니다. SELECT query = " select * from %s" & (tabl..
1. 문제상황 HTTP 메소드 DELETE로 request body를 이용하여 spring 컨트롤러에 요청을 쐈는데, 파라미터가 전부 null 로 넘어가는 것이 아닌가?? 띠용? 2. 문제점 참조문서 : https://stackoverflow.com/questions/25375046/passing-data-in-the-body-of-a-delete-request tomcat의 문제라고 한다. tomcat은 request body를 POST 일때만 파싱하고 있었다. 코드까보기 톰캣버전 : 8.0.48 (로컬 윈도우에 깔린거) 경로 : org.apache.catalina.connector.Connector.java 관련 코드 76라인 : 생성자호출에서 this.parseBodyMethods = "POST";..