본문 바로가기

sto-sale-purchase4

[RDS] SpringBoot 와 RDS 연동하기 DB 확인 MySQL RDS DB 인스턴스의 데이터베이스에 연결하기 PROMPT> mysql -h -P -u -p database 선택 테이블 보기 테이블 정보 테이블 내용 조회 SpringBoot 참고 : 2022.08.31 - [java/spring] - [Spring] spring 프로젝트 MySQL 연결하기 build.gradle dependencies resources/application.properties spring.output.ansi.enabled=always # MySQL setting spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver # JDBC URL of the database. spring.datasource.url=.. 2022. 9. 1.
[Spring + React] 스프링과 리액트 연동하기 Spring HelloController.java package com.sto.salepurchase.backstosalepurchase; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; import java.util.Arrays; import java.util.List; @RestController public class HelloController { @GetMapping("hello") public List Hello(){ return Arrays.asList("서버 포트는 8080", "리액트 포트는 3000"); } } main.. 2022. 8. 31.
[Spring] spring 프로젝트 MySQL 연결하기 build.gradle dependencies 추가 application.properties 설정 추가 # MySQL 설정 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver # JDBC URL of the database. # spring.datasource.url=jdbc:mysql://localhost:{port}/{DBname}?{options} spring.datasource.url=jdbc:mysql://localhost:3306/test_db?useSSL=false&allowPublicKeyRetrieval=true spring.datasource.username=test spring.datasource.password=1234 spr.. 2022. 8. 31.
[Spring] STO-sale-purchase 프로젝트 환경설정 프로젝트 생성 Backend https://start.spring.io/ GENERATE build.gradle open (intellij) STO-sale-purchase/back-sto-sale-purchase/src/main/java/com/sto/salepurchase/backstosalepurchase/BackStoSalePurchaseApplication.java main method 실행 localhost:8080 접속 Frontend npx create-react-app front-sto-sale-purchase cd front-sto-sale-purchase npm start 2022. 8. 29.