Adiciones y cambios a relaciones entre entidades y creacion de constructores. Creacion del usuario basico para acceder como usuario de tipo adminsitrador. Creacion de repositorios para todas las clases. Y creacion de Buscador que debe ser la pagina principal y creacion de checkboxes para uso futuro.
parent
baee727c5c
commit
0440e82747
@ -0,0 +1,85 @@
|
|||||||
|
package com.example.proyectofinal.configuration.database;
|
||||||
|
import com.example.proyectofinal.models.empresas.*;
|
||||||
|
import com.example.proyectofinal.repositories.empresas.AlumnoRepository;
|
||||||
|
import com.example.proyectofinal.repositories.empresas.ContactoRepository;
|
||||||
|
import com.example.proyectofinal.repositories.empresas.OfertaRepository;
|
||||||
|
import com.example.proyectofinal.repositories.empresas.SucursalRepository;
|
||||||
|
import com.github.javafaker.Faker;
|
||||||
|
import org.springframework.boot.CommandLineRunner;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
public class DatabaseTest {
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
CommandLineRunner initDatabase(AlumnoRepository alumnoRepository, ContactoRepository contactoRepository, SucursalRepository sucursalRepository, OfertaRepository ofertaRepository) {
|
||||||
|
return args -> {
|
||||||
|
Faker faker = new Faker();
|
||||||
|
|
||||||
|
for (int i = 0; i < 5; i++) {
|
||||||
|
Familia familia = new Familia("Informatica" + i);
|
||||||
|
|
||||||
|
Ciclo ciclo = new Ciclo("DAM" + i, familia);
|
||||||
|
|
||||||
|
Skill skill = new Skill(faker.lorem().word() + i);
|
||||||
|
|
||||||
|
Set<Skill> skills = new HashSet<>();
|
||||||
|
skills.add(skill);
|
||||||
|
|
||||||
|
Alumno alumno = new Alumno(
|
||||||
|
faker.name().firstName(),
|
||||||
|
faker.name().lastName(),
|
||||||
|
faker.date().birthday(),
|
||||||
|
faker.demographic().sex(),
|
||||||
|
faker.number().digits(8),
|
||||||
|
faker.lorem().word(),
|
||||||
|
skills,
|
||||||
|
ciclo
|
||||||
|
);
|
||||||
|
alumnoRepository.save(alumno);
|
||||||
|
|
||||||
|
Sector sector = new Sector("Tecnologia" + i);
|
||||||
|
|
||||||
|
Empresa empresa = new Empresa(
|
||||||
|
faker.company().name(),
|
||||||
|
"123456789W" + i,
|
||||||
|
faker.internet().emailAddress(),
|
||||||
|
faker.phoneNumber().cellPhone(),
|
||||||
|
faker.company().profession(),
|
||||||
|
sector
|
||||||
|
);
|
||||||
|
|
||||||
|
Contacto contacto = new Contacto(
|
||||||
|
faker.name().firstName(),
|
||||||
|
faker.name().lastName(),
|
||||||
|
faker.name().lastName(),
|
||||||
|
faker.internet().emailAddress(),
|
||||||
|
faker.phoneNumber().cellPhone(),
|
||||||
|
empresa
|
||||||
|
);
|
||||||
|
contactoRepository.save(contacto);
|
||||||
|
|
||||||
|
Sucursal sucursal = new Sucursal(
|
||||||
|
"Sucursal " + (i + 1),
|
||||||
|
"Sevilla",
|
||||||
|
"Calle Falsa 123",
|
||||||
|
true,
|
||||||
|
empresa
|
||||||
|
);
|
||||||
|
sucursalRepository.save(sucursal);
|
||||||
|
|
||||||
|
Oferta oferta = new Oferta(
|
||||||
|
"Oferta " + (i + 1),
|
||||||
|
"Descripcion de la oferta",
|
||||||
|
"2023-01-11",
|
||||||
|
skills
|
||||||
|
);
|
||||||
|
ofertaRepository.save(oferta);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
package com.example.proyectofinal.seguridad;
|
package com.example.proyectofinal.configuration.seguridad;
|
||||||
import jakarta.servlet.ServletException;
|
import jakarta.servlet.ServletException;
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
import jakarta.servlet.http.HttpServletRequest;
|
||||||
import jakarta.servlet.http.HttpServletResponse;
|
import jakarta.servlet.http.HttpServletResponse;
|
@ -1,14 +1,14 @@
|
|||||||
package com.example.proyectofinal.controllers;
|
package com.example.proyectofinal.controllers;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
|
||||||
|
|
||||||
@RestController()
|
@Controller
|
||||||
@RequestMapping("/buscador")
|
@RequestMapping("/buscador")
|
||||||
public class BuscadorController {
|
public class BuscadorController {
|
||||||
@GetMapping("/test")
|
@GetMapping
|
||||||
private String test(){
|
public String buscador(){
|
||||||
return "Test Buscador";
|
return "buscador";
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.example.proyectofinal.models.login;
|
||||||
|
|
||||||
|
public class Autoridades {
|
||||||
|
}
|
@ -0,0 +1,4 @@
|
|||||||
|
package com.example.proyectofinal.models.login;
|
||||||
|
|
||||||
|
public class Usuario {
|
||||||
|
}
|
@ -1,4 +0,0 @@
|
|||||||
package com.example.proyectofinal.models.usuarios;
|
|
||||||
|
|
||||||
public class Autoridades {
|
|
||||||
}
|
|
@ -1,4 +0,0 @@
|
|||||||
package com.example.proyectofinal.models.usuarios;
|
|
||||||
|
|
||||||
public class Usuario {
|
|
||||||
}
|
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Alumno;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface AlumnoRepository extends JpaRepository<Alumno, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Ciclo;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface CicloRepository extends JpaRepository<Ciclo, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Contacto;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface ContactoRepository extends JpaRepository<Contacto, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Empresa;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface EmpressaRepository extends JpaRepository<Empresa, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Familia;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface FamiliaRepository extends JpaRepository<Familia, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Oferta;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface OfertaRepository extends JpaRepository<Oferta, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Sector;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface SectorRepository extends JpaRepository<Sector, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Skill;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface SkillRepository extends JpaRepository<Skill, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.empresas;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.empresas.Sucursal;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface SucursalRepository extends JpaRepository<Sucursal, Long> {
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.login;
|
||||||
|
|
||||||
|
import com.example.proyectofinal.models.login.Autoridades;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface AutoridadesRepository /*extends JpaRepository<Autoridades, Long> */{
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.example.proyectofinal.repositories.login;
|
||||||
|
|
||||||
|
import org.apache.catalina.User;
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository;
|
||||||
|
|
||||||
|
public interface UserRepository /*extends JpaRepository<User, Long> */{
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html xmlns:th="http://www.thymeleaf.org">
|
||||||
|
<head>
|
||||||
|
<title>Buscador</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
background-color: #f0f0f0;
|
||||||
|
font-family: Arial, sans-serif;
|
||||||
|
}
|
||||||
|
form {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
width: 50%;
|
||||||
|
}
|
||||||
|
input[type="text"] {
|
||||||
|
flex-grow: 1;
|
||||||
|
padding: 15px;
|
||||||
|
margin-right: 10px;
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
.checkboxes {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
width: 50%;
|
||||||
|
margin-top: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<form action="#" method="get">
|
||||||
|
<input type="text" name="query" placeholder="Buscar...">
|
||||||
|
<input type="submit" value="Buscar">
|
||||||
|
</form>
|
||||||
|
<div class="checkboxes">
|
||||||
|
<input type="checkbox" id="option1" name="option1" value="Option1">
|
||||||
|
<label for="option1"> Option 1</label><br>
|
||||||
|
<input type="checkbox" id="option2" name="option2" value="Option2">
|
||||||
|
<label for="option2"> Option 2</label><br>
|
||||||
|
<input type="checkbox" id="option3" name="option3" value="Option3">
|
||||||
|
<label for="option3"> Option 3</label><br>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in new issue