dispatcher-servlet.xml
<mvc:resources location="/resources/" mapping="/resources/**"></mvc:resources>
HomeController.java
package com.mugil.controls;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
@Controller
public class HomeController {
@RequestMapping("/home")
public String testMethod()
{
return "home";
}
}
style.css
h1
{
color : red;
}