SpringBoot无法扫描Controller并获取URL映射

时间:2018-11-28 03:10:13

标签: java spring-boot controller url-mapping

我刚刚编写了一个Springboot应用程序作为测试Web服务器,它起源于spring.io。 它最初打包在“ jar”中,将其更改为“ war”文件。 并获得如下的应用程序类代码:

package com.ronzhong;
import org.springframework.boot.Banner.Mode;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.servlet.support.SpringBootServletInitializer;
import org.springframework.web.context.WebApplicationContext;

@SpringBootApplication(scanBasePackages={"com.ronzhong.libraryManagement"})
public class LibraryManagementApplication extends SpringBootServletInitializer {

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        application.application().setBannerMode(Mode.OFF);
        return application.sources(SpringApplicationBuilder.class);
    }

    protected WebApplicationContext run(SpringApplication application) {
        return (WebApplicationContext) application.run();
    }

//  public static void main(String[] args) {
//  SpringApplication.run(LibraryManagementApplication.class, args);
//}
}

而控制器是:

package com.ronzhong.libraryManagement;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.context.annotation.ComponentScan;
import org.springframework.http.MediaType;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;


import org.springframework.web.bind.annotation.CrossOrigin;
import org.springframework.web.bind.annotation.*;

//@CrossOrigin(origins = "http://localhost:4200", maxAge = 3600)
@RestController
@RequestMapping("/api")
public class CounterController {
    @Autowired
    private BookService bookService;

    @PostMapping
    public boolean add(@RequestBody Book book){
        return bookService.add(book);
    }

    @RequestMapping(value = "/books", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
    public Book[] get(){
        return bookService.getBooks();
    }

    @RequestMapping(value = "{id}", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE)
    public Book findOne(@PathVariable("id") int id){
        return bookService.findById(id);
    }

}

我还检查了 项目构面中的“动态Web模块”。 最终,在启动tomcat服务器并生成此war文件时,我得到了这些日志。

INFO: 2 Spring WebApplicationInitializers detected on classpath
2018-11-28 10:43:31.925  INFO 14888 --- [           main] c.ronzhong.LibraryManagementApplication  : Starting LibraryManagementApplication on ronzhongmachine with PID 14888 (C:\Users\ronzhong\workspace_testserver\.metadata\.plugins\org.eclipse.wst.server.core\tmp0\wtpwebapps\library-Management\WEB-INF\classes started by ronzhong in C:\tools_installers\eclipse-jee-2018-09-win32-x86_64\eclipse)
2018-11-28 10:43:32.002  INFO 14888 --- [           main] c.ronzhong.LibraryManagementApplication  : No active profile set, falling back to default profiles: default
2018-11-28 10:43:33.910  INFO 14888 --- [           main] o.a.c.c.C.[.[.[/library-Management]      : Initializing Spring embedded WebApplicationContext
2018-11-28 10:43:33.911  INFO 14888 --- [           main] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1604 ms
2018-11-28 10:43:34.362  INFO 14888 --- [           main] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'errorPageFilter' to: [/*]
2018-11-28 10:43:34.704  INFO 14888 --- [           main] c.ronzhong.LibraryManagementApplication  : Started LibraryManagementApplication in 5.958 seconds (JVM running for 36.407)
2018-11-28 10:43:34.955  INFO 14888 --- [           main] org.apache.coyote.ajp.AjpNioProtocol     : Starting ProtocolHandler ["ajp-nio-8009"]
2018-11-28 10:43:34.968  INFO 14888 --- [           main] org.apache.catalina.startup.Catalina     : Server startup in 28177 ms

日志中没有映射信息。 如果我要求http://localhost:8080/api/books,它将收到404错误。 但是日志甚至都没有改变。 因此,我搜索了潜在原因,并暂时排除了这些原因:

  1. springboot应用程序不扫描控制器所在的软件包?
    我将springboot应用程序类移至上层软件包,还指定了应扫描的软件包类型。 当您看到时,它不起作用。
  2. 注释问题?
    有人说我们应该使用@RestController批注而不是@Controller,最好添加@ResponseBody,而我这样做了。 它也不起作用。
  3. 部署问题?
    不知道,我确实更改了该项目的构建路径,该项目通常会生成jar文件和war文件,但是webapp文件夹为空,因为我没有任何静态资源,所以我认为还好吧?

有人可以帮助我吗?非常感谢您的回答,在此先感谢。

1 个答案:

答案 0 :(得分:0)

从日志中,我可以看到您的war文件名是library-Management,这意味着它的日志文件已取消部署在此文件夹下。因此,您应该改为选择http://localhost:8080/library-Management/api/books

您从Tomcat处获得了404,它根本不会打入您的应用程序,这就是为什么您看不到任何日志的原因。