当前位置:   article > 正文

学习springboot过程中的问题之无法引入@requestmapping注解_springboot项目找不到requestmapping注解

springboot项目找不到requestmapping注解
1.在创建好springboot maven项目之后,在controller中无法使用@requestmapping 注解。

因为缺少了 spring-web.jar包。需要在pom.xml中引入以下代码:

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-jpa</artifactId>
  4. </dependency>

引入之后,对该项目进行update 待包下载完毕,注解可以使用。如下

  1. package com.test.simaple.contoller;
  2. import org.springframework.stereotype.Controller;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. @Controller
  5. @RequestMapping("/")
  6. public class HelloController {
  7. @RequestMapping("/getHello")
  8. public String getHello(){
  9. return "";
  10. }
  11. }


2.启动springboot  访问后台报错
  1. This application has no explicit mapping for /error, so you are seeing this as a fallback.
  2. Fri Apr 27 17:34:34 CST 2018
  3. There was an unexpected error (type=Internal Server Error,
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/194581
推荐阅读
相关标签
  

闽ICP备14008679号