Guest User

Untitled

a guest
Nov 21st, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. Spring Boot your Hello World app will not "start"
  2.  
  3. add this to dependencies
  4.  
  5. ```xml
  6. <dependency>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-web</artifactId>
  9. </dependency>
  10. ```
  11.  
  12. =================================
  13.  
  14. Spring Boot – Cannot determine embedded database driver class for database type NONE
  15.  
  16. `@EnableAutoConfiguration(exclude={DataSourceAutoConfiguration.class})`
  17. or
  18. add `spring.datasource.url=jdbc:mysql://localhost/Test_DB` to `application.properties`
Add Comment
Please, Sign In to add comment