Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
Antonio Rueda
/
UJACoin
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
3c9f1023
authored
Nov 10, 2020
by
Antonio Rueda
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
Añadidas dependencias de JPA y MySQL y configuración de conexión
parent
abb62f7f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
12 deletions
pom.xml
src/main/resources/application.yml
pom.xml
View file @
3c9f1023
...
@@ -25,6 +25,17 @@
...
@@ -25,6 +25,17 @@
<dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-data-jpa
</artifactId>
</dependency>
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<scope>
runtime
</scope>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-validation
</artifactId>
<artifactId>
spring-boot-starter-validation
</artifactId>
</dependency>
</dependency>
...
@@ -40,18 +51,18 @@
...
@@ -40,18 +51,18 @@
<artifactId>
junit-jupiter
</artifactId>
<artifactId>
junit-jupiter
</artifactId>
<scope>
test
</scope>
<scope>
test
</scope>
</dependency>
</dependency>
<!--
<!--
<dependency>
<dependency>
<groupId>org.hibernate.validator</groupId>
<groupId>org.hibernate.validator</groupId>
<artifactId>hibernate-validator</artifactId>
<artifactId>hibernate-validator</artifactId>
</dependency>
</dependency>
<dependency>
<dependency>
<groupId>org.glassfish</groupId>
<groupId>org.glassfish</groupId>
<artifactId>jakarta.el</artifactId>
<artifactId>jakarta.el</artifactId>
<version>3.0.3</version>
<version>3.0.3</version>
</dependency>
</dependency>
-->
-->
</dependencies>
</dependencies>
<build>
<build>
...
...
src/main/resources/application.yml
0 → 100644
View file @
3c9f1023
## YAML Template.
spring.datasource.url
:
jdbc:mysql://localhost:33060/ujacoin
spring.datasource.username
:
ujacoin
spring.datasource.password
:
secret
spring.jpa.properties.javax.persistence.schema-generation.database.action
:
drop-and-create
spring.data.jpa.repositories.bootstrap-mode
:
default
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment