Advertisement
Guest User

Untitled

a guest
Feb 8th, 2017
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. insert into admin(username,password,role) values('admin','admin','role_admin');
  2.  
  3. <dependency>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-jdbc</artifactId>
  6. <version>1.2.4.RELEASE</version>
  7. </dependency>
  8.  
  9. spring.datasource.driver-class-name=com.mysql.jdbc.Driver
  10. spring.datasource.url=jdbc:mysql://localhost:3306/exampleDB
  11. spring.datasource.username=root
  12. spring.datasource.password=root
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement