This commit is contained in:
2025-05-07 12:33:46 +09:00
commit 995676ae5d
25 changed files with 991 additions and 0 deletions

View File

@ -0,0 +1,11 @@
spring.application.name=dog-1
spring.sql.init.platform=mysql
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.jpa.database-platform=org.hibernate.dialect.MySQLDialect
spring.datasource.url=jdbc:mysql://localhost:3306/mysql?serverTimezone=Asia/Tokyo
spring.datasource.username=root
spring.datasource.password=Jaichbin119
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver

View File

@ -0,0 +1,13 @@
package co.jp.app;
import org.junit.jupiter.api.Test;
import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class Dog1ApplicationTests {
@Test
void contextLoads() {
}
}