Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * SpringMVC
- * CopyRight Rech Informática Ltda. Todos os direitos reservados.
- */
- package com.fernando.controller;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.Model;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RequestMethod;
- /**
- * Descrição da classe.
- */
- @Controller
- public class IndexController {
- @RequestMapping("/index")
- //@RequestMapping(value = "/index",method = RequestMethod.GET)
- public String index(Model model) {
- model.addAttribute("message", "Hello World!");
- return "index";
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment