13 lines
299 B
Java
13 lines
299 B
Java
package com.codesdream.ase.controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
@Controller
|
|
public class HomeController {
|
|
@RequestMapping(value = "/home")
|
|
public String showHomeView(){
|
|
return "home";
|
|
}
|
|
}
|