Incluir imágenes modelo relacional
This commit is contained in:
parent
9e9b41e917
commit
c469264657
7
README.md
Normal file
7
README.md
Normal file
@ -0,0 +1,7 @@
|
||||
# Formación en institutos FP de la Comunidad de Madrid
|
||||
|
||||
## Modelo Entidad Relación Extendido
|
||||

|
||||
|
||||
## Modelo Relacional
|
||||

|
||||
BIN
img/ModeloER-FormacionesInstitutosFP.png
Normal file
BIN
img/ModeloER-FormacionesInstitutosFP.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 57 KiB |
BIN
img/ModeloRelacional-FormacionesInstitutosFP.png
Normal file
BIN
img/ModeloRelacional-FormacionesInstitutosFP.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 29 KiB |
@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
|
||||
http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
|
||||
<!-- Unidad Persistencia Hibernate -->
|
||||
@ -12,7 +11,8 @@
|
||||
<!-- Configuración para la conexión a la Base de Datos -->
|
||||
<properties>
|
||||
<property name="jakarta.persistence.jdbc.driver" value="com.mysql.cj.jdbc.Driver" />
|
||||
<property name="jakarta.persistence.jdbc.url" value="jdbc:mysql://10.11.218.147:3306/formacionfp_dam2" /> <property name="jakarta.persistence.jdbc.user" value="root" />
|
||||
<property name="jakarta.persistence.jdbc.url" value="jdbc:mysql://192.168.1.36:3306/formacionfp_dam2" />
|
||||
<property name="jakarta.persistence.jdbc.user" value="root" />
|
||||
<property name="jakarta.persistence.jdbc.password" value="mysql_123" />
|
||||
<property name="hibernate.show_sql" value="true" />
|
||||
</properties>
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
# Información sobre la Base de datos PostgreSQL
|
||||
jdbc.driver=org.postgresql.Driver
|
||||
jdbc.url=jdbc:postgresql://10.11.218.147:5432/formacionfp_postgresql
|
||||
jdbc.url=jdbc:postgresql://192.168.1.36:5432/formacionfp_postgresql
|
||||
jdbc.usuario=vdlp
|
||||
jdbc.password=postgresql_123
|
||||
|
||||
# Información sobre la Base de datos MongoDB
|
||||
mongodb.url=mongodb://localhost:27017/
|
||||
mongodb.url=mongodb://admin:mongodb_123@192.168.1.36:27017
|
||||
mongodb.bbdd=formacionfp_dam2
|
||||
|
||||
#ruta URL formaciones
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
|
||||
<hibernate-configuration>
|
||||
<session-factory>
|
||||
<property name="connection.url">jdbc:mysql://10.11.218.147:3306/formacionfp_dam2</property>
|
||||
<property name="connection.url">jdbc:mysql://192.168.1.36:3306/formacionfp_dam2</property>
|
||||
<property name="hibernate.connection.driver_class">com.mysql.cj.jdbc.Driver</property>
|
||||
|
||||
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user