TecnologiaController.java 2.52 KB
Newer Older
1 2 3 4 5
package com.roshka.controller;

import com.roshka.modelo.Tecnologia;
import com.roshka.repositorio.TecnologiaRepository;
import org.springframework.beans.factory.annotation.Autowired;
6 7 8 9
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
10 11 12 13 14 15
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.*;

import javax.validation.Valid;
16 17 18 19 20 21 22 23 24 25 26 27 28

@Controller
public class TecnologiaController {
 
    TecnologiaRepository tecRepo;


@Autowired 
public TecnologiaController(TecnologiaRepository tecRepo){
   this.tecRepo = tecRepo;

}

29 30 31 32 33 34
@GetMapping(path = {"/tecnologia","/tecnologia/{id}"})
public String addtecnologiaView(Model model,@PathVariable(required = false) Long id) {
    
    
    if(id == null) model.addAttribute("tecnologia", new Tecnologia());
    else model.addAttribute("tecnologia", tecRepo.getById(id));
35 36
    return "tecnologia-form";
}
37 38

@RequestMapping("/tecnologias")
39
    public String menuTecnologias(Model model,@RequestParam(required = false) String nombre,@RequestParam(defaultValue = "0")Integer nroPagina) {
40
        final Integer CANTIDAD_POR_PAGINA = 10;
41
        Pageable page = PageRequest.of(nroPagina,CANTIDAD_POR_PAGINA,Sort.by("id"));
42 43 44 45 46 47 48 49 50 51 52
        
        if(nombre == null || nombre.trim().isEmpty()) {
            Page<Tecnologia> tecnologiaPag=tecRepo.findAllTecnologia(page);
            model.addAttribute("tecnologias", tecnologiaPag.getContent());
            model.addAttribute("pages", tecnologiaPag.getTotalPages());
        }
        else {
            Page<Tecnologia> tecnologiaPag=tecRepo.findByNombreContainingIgnoreCase(nombre,page);    
            model.addAttribute("pages", tecnologiaPag.getTotalPages());
            model.addAttribute("tecnologias", tecnologiaPag.getContent());
        }
53 54 55 56
        return "tecnologias";
    }

@PostMapping(path = {"/tecnologia","/tecnologia/{id}"})
57 58 59 60 61
    public String addtecnologia(@Valid @ModelAttribute Tecnologia tecnologia, BindingResult result, @PathVariable(required = false) Long id, Model model) {
        if(result.hasErrors() || (id==null && tecRepo.existsByNombreIgnoreCase(tecnologia.getNombre()))){
            model.addAttribute("mismoNombre", true);
            return "tecnologia-form";
        } 
62 63
        if(id != null ) tecnologia.setId(id);
        tecRepo.save(tecnologia);
64
        return "redirect:/tecnologias";
65 66 67 68 69 70
    } 




}