when I was trying to add requestmapping annotation it got an error in the project .When I added
import org.springframework.web.bind.annotation.RequestMapping;
got an another error.
package com.example.demo.controller.user;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("Home")
public class HomeController {
}
