TecnologiaController.java 2.21 KB
Newer Older
1 2
package com.roshka.controller;

3 4
import javax.validation.Valid;

5 6 7 8 9 10
import com.roshka.modelo.Tecnologia;
import com.roshka.repositorio.TecnologiaRepository;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
11
import org.springframework.validation.BindingResult;
12 13
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ModelAttribute;
14
import org.springframework.web.bind.annotation.PathVariable;
15 16
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
17
import org.springframework.web.bind.annotation.RequestParam;
18 19 20 21 22 23 24 25 26 27 28 29 30

@Controller
public class TecnologiaController {
 
    TecnologiaRepository tecRepo;


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

}

31 32 33 34 35 36
@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));
37 38
    return "tecnologia-form";
}
39 40 41 42 43 44 45 46 47 48 49

@RequestMapping("/tecnologias")
    public String menuTecnologias(Model model,
                            @RequestParam(required = false) String nombre
                            ) {
        if(nombre == null || nombre.trim().isEmpty()) model.addAttribute("tecnologias", tecRepo.findAll());
        else model.addAttribute("tecnologias", tecRepo.findByNombreContainingIgnoreCase(nombre));
        return "tecnologias";
    }

@PostMapping(path = {"/tecnologia","/tecnologia/{id}"})
50 51 52 53 54
    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";
        } 
55 56 57
        if(id != null ) tecnologia.setId(id);
        tecRepo.save(tecnologia);
        System.out.println(tecnologia.getNombre());
58
        return "redirect:/tecnologias";
59 60 61 62 63 64
    } 




}