No mapping found for HTTP request with URI *(Spring mvc采用注释方式生成uri路径访问不到问题)

@Controller
@RequestMapping("/Person")
public class PersonManagerService {
    private  Logger log = LoggerFactory.getLogger(PersonManagerService.class);
    @Resource
    private PersonManager  myPersonManager;
    
    public PersonManager getMyPersonManager() {
        return myPersonManager;
    }

    public void setMyPersonManager(PersonManager personManager) {
        this.myPersonManager = personManager;
    }
    @RequestMapping(value="/searchPagePerson.do",method = RequestMethod.POST) 
    public ModelAndView searchPagePerson(HttpServletRequest request,
            HttpServletResponse response){
***
}

对于采用上述方式访问运行过程中指定的路径找不到的问题,请查看spring配置的问题:

<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerAdapter"/>
 <context:component-scan base-package="com.sinosoft.ie.aids.lab.samples.service"/>

这个必须要配的。

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。