9/29/2022

스프링부트

>> 11

Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured.

--> build.gradle 항목에 JPA 또는 mysql driver 사용중인 경우에는 

application.properties 항목에 db 연결 설정.

 

>>

Spring Web, Spring Data JPA, and MySQL Driver.

 

#spring.jpa.hibernate.ddl-auto=update  # update 기본 부트 실행시 에러가 남. ( 관련 클래스 없이..)실행시
spring.jpa.hibernate.ddl-auto=none
#spring.datasource.url=jdbc:mysql://${MYSQL_HOST:localhost}:3306/board
spring.datasource.url=jdbc:mysql://localhost:3306/board
spring.datasource.username=spring
spring.datasource.password=
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.jpa.show-sql=true

스르핑부트 초기 진입.  -->  컨트롤러

 


>> phpmyadmin. root 암호.

디렉터리 phpmyadmin 아래의

config.inc.php


/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';  /* root 암호 */
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['AllowNoPassword'] = true;
$cfg['Lang'] = '';


댓글 없음: