-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9ac077e
commit db3c269
Showing
7 changed files
with
37 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
package com.springboot.app.models.dao; | ||
|
||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.data.repository.PagingAndSortingRepository; | ||
|
||
import com.springboot.app.models.entity.Cliente; | ||
|
||
public interface IClienteDao extends PagingAndSortingRepository<Cliente, Long> { | ||
|
||
public interface IClienteDao extends JpaRepository<Cliente, Long> { | ||
//PagingAndSortingRepository | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,15 @@ | ||
################################# | ||
#Configuracion console de BD H2 # | ||
################################# | ||
|
||
#spring.datasource.url=jdbc:h2:men:clientesdb | ||
#spring.datasource.username=isaias | ||
#spring.datasource.password=sa | ||
#spring.datasource.driver-class-name=org.h2.Driver | ||
spring.h2.console.enabled=true | ||
# default jdbc: testdb user: sa pass: <sinclave> | ||
# localhost:8080/h2-console/ | ||
|
||
# FILE | ||
spring.servlet.multipart.max-file-size=10MB | ||
spring.servlet.multipart.max-request-size=10MB |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters