Java Spring Boot [Mid 2024] Part 1: Intro, Setup, Controller

3 months ago
10

FULL PLAYLIST:
https://www.youtube.com/watch?v=eHw8bNZ7xi4&list=PL7TZZ2ip0DRCmJ57pzkc3EChRTJ6pm_bH

LinkTree:
linktr.ee/peachezprogramming

Intelli J download:
https://www.jetbrains.com/idea/download/

MySQL Workbench download:
https://dev.mysql.com/downloads/workbench/

MySQL Server download:
https://dev.mysql.com/downloads/mysql/

Mac terminal command to get the mySQL server running:
Sudo /usr/local/mysql/support-files/mysql.server start

Debug mySQL server not running on Mac:https://discussions.apple.com/thread/254871250?sortBy=best

MVN repository:
https://mvnrepository.com/artifact/com.mysql/mysql-connector-j

application.properties file:
spring.datasource.url=jdbc:mysql://localhost:3306/nobsv2
spring.datasource.username=root
spring.datasource.password=
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

Loading 1 comment...