Hello World!
Spread your wide wings 
with Java
Node.js / Express에서 GET과 POST 요청 처리하는 방법
Framework/Express 2024. 7. 22. 09:42 Node.js / Express에서 GET과 POST 요청 처리하는 방법

1. Node.js Node.js는 서버 측에서 JavaScript를 실행할 수 있게 해주는 런타임 환경이다. 이벤트 기반, 논 블로킹 I/O 모델을 사용하여 가볍고 효율적인 웹 서버를 구축할 수 있다. 자세한 내용은 다른 포스트에서 다루겠다. 💾 Node.js Node.js — Run JavaScript EverywhereNode.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.nodejs.org  2. Express.js1) Express.js 소개 Express.js는 Node.js를 사용하여 백엔드 웹 애플리케이션을 개발할 수 있도록 도와주는 프레임워크이다. Node.js 환경에서 가장 널리 사용되는 사실상 Node.js의 ..

React와 Spring 사이에서 데이터 연동
Library/React 2024. 6. 12. 11:33 React와 Spring 사이에서 데이터 연동

🚀 개발 환경▪  IDE : VScode 1.90.0, STS 3.9.18▪  JAVA : JDK 11.0.22▪  Spring : SpringFramework 5.0.2.▪  WAS : Apache Tomcat v9.0.89 전체 파일은 나중에 시간이 생기면 업로드합니다.   1. React에서 Spring으로 GET(Query String) 방식을 통한 데이터 전달 📑 React : Spring.jsximport React, { useState } from "react";import axios from "axios";const Spring = () => { const [id, setId] = useState(""); const [pw, setPw] = useState(""); function..

image