Skip to content

Commit

Permalink
Base de datos con SQL
Browse files Browse the repository at this point in the history
  • Loading branch information
vicsmr committed Jun 27, 2016
1 parent 65ec7f2 commit 619c155
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 2 deletions.
5 changes: 5 additions & 0 deletions security_ejem1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
Expand Down
6 changes: 5 additions & 1 deletion security_ejem1/src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
spring.jpa.hibernate.ddl-auto= create-drop
spring.datasource.url=jdbc:mysql://localhost/majorleaguefootball
spring.datasource.username=root
spring.datasource.password=amuntRealMadrid
spring.datasource.driverClassName=com.mysql.jdbc.Driver
spring.jpa.hibernate.ddl-auto: update
server.port=8443
server.ssl.key-store=classpath:keystore.p12
server.ssl.key-store-password=tomcat
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Generated by Maven Integration for Eclipse
#Sat Jun 25 12:28:33 CEST 2016
#Mon Jun 27 14:09:05 CEST 2016
version=0.1.0
groupId=es.sidelab
m2e.projectName=Probamos
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>

<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
Expand Down

0 comments on commit 619c155

Please sign in to comment.