Hello World!
Spread your wide wings 
with Java
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