我在springmvc中有以下控制器。
import java.text.DateFormat;
import java.util.Date;
import java.util.Locale;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
/**
* Handles requests for the application home page.
*/
@Controller
public class HomeController {
private static final Logger logger = LoggerFactory.getLogger(HomeController.class);
/**
* Simply selects the home view to render by returning its name.
*/
@RequestMapping(value = "/", method = RequestMethod.GET)
public String home(Locale locale, Model model) {
logger.info("Welcome home! the client locale is "+ locale.toString());
Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG, locale);
String formattedDate = dateFormat.format(date);
model.addAttribute("serverTime", formattedDate );
return "main";
}
}
当我请求http://localhost:8080/Woodcutter/
网址时出现以下错误
这是因为两个方法指向相同的URL,因此您的控制器混淆。您不能有两个url路径相同而不是模糊的问题将产生。
你有两种方法home(String)
和external_page(String)
在HomeController
映射到相同的网址http://localhost:8080/Woodcutter/
。您只能使用HTTP方法(GET / POST)映射映射到特定URL的一个方法,这就是歧义。请更改其中一种方法的网址或删除一种方法。如何将请求委托给匹配URL和HTTP方法的两个方法?认为。