[React] React와 Spring Boot 연동하기
2023. 7. 27. 20:32
프로그래밍/React
React와 Spring Boot 연동 방법 1. package.json 파일에 프록시 설정 "proxy”: "http://localhost:8080", "scripts": {...}, 2. 통신 테스트 App.js import React, { useEffect, useState } from "react" function App() { const [data, setData] = useState(''); useEffect(() => { fetch('/api/main') .then(response => response.text()) .then(data => setData(data)) .catch(error => console.error(error)); }, []); return ( {data} ); expo..