TecnologiaController.java 1.04 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
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;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;

@Controller
public class TecnologiaController {
 
    TecnologiaRepository tecRepo;


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

}

@GetMapping("/tecnologia")
public String addtecnologiaView(Model model) {
    model.addAttribute("tecnologia", new Tecnologia());
    return "tecnologia-form";
}
@PostMapping("/tecnologia")
    public String addtecnologia(@ModelAttribute("tecnologia") Tecnologia tecnologia) {
      tecRepo.save(tecnologia);
        
        return "redirect:/";
    } 




}