TecnologiaController.java 1.98 KB
Newer Older
1 2 3 4 5 6 7 8
package com.roshka.controller;

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;
9
import org.springframework.validation.BindingResult;
10 11
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ModelAttribute;
12
import org.springframework.web.bind.annotation.PathVariable;
13 14
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
15
import org.springframework.web.bind.annotation.RequestParam;
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 39 40 41 42 43 44 45 46 47 48 49 50 51 52

@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}"})
    public String addtecnologia(@ModelAttribute Tecnologia tecnologia, BindingResult result, @PathVariable(required = false) Long id) {
        if(result.hasErrors()); 
        if(id != null ) tecnologia.setId(id);
        tecRepo.save(tecnologia);
        System.out.println(tecnologia.getNombre());
53 54 55 56 57 58 59
        return "redirect:/";
    } 




}