java – Spring-boot jersey:资源不能自动发现

我尝试使用带有码头和平针织物的Spring-boot.
码头部分没问题.我可以启动服务器和Spring资源正在运行(跟踪,指标,信息,bean,….)但我的资源没有运行.

我的配置文件是:
Launcher.java

@Configuration
@PropertySource("classpath:application.properties")
@EnableAutoConfiguration
@ComponentScan(basePackages = {"com.fdilogbox.report.serveur"})
public class Launcher extends SpringBootServletInitializer {

    public static void main(String[] args) throws Exception {
        SpringApplication.run(Launcher.class, args);
    }

    @Override
    protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
        return application.sources(Launcher.class);
    }

    @Bean
    public ServletRegistrationBean jerseyServlet() {
        ServletRegistrationBean registration = new ServletRegistrationBean(new ServletContainer(), "/api/*");
        registration.addInitParameter(ServletProperties.JAXRS_APPLICATION_CLASS, ResourcesConfiguration.class.getName());
        return registration;
    }

    @Bean
    public EmbeddedServletContainerFactory containerFactory() {
        final JettyEmbeddedServletContainerFactory jettyEmbeddedServletContainerFactory = new JettyEmbeddedServletContainerFactory() {
            @Override
            protected JettyEmbeddedServletContainer getJettyEmbeddedServletContainer(Server server) {
                return new JettyEmbeddedServletContainer(server);
            }
        };
        jettyEmbeddedServletContainerFactory.addServerCustomizers(new JettyConfiguration());
        return jettyEmbeddedServletContainerFactory;
    }

    @Bean
    public static PropertySourcesPlaceholderConfigurer propertyConfigInDev() {
        return new PropertySourcesPlaceholderConfigurer();
    }
}

JettyConfiguration.java

public class JettyConfiguration implements JettyServerCustomizer {

    @Override
    public void customize(Server server) {
        WebAppContext webAppContext = (WebAppContext) server.getHandler();
        try {
            // Load configuration from resource file (standard Jetty xml configuration) and configure the context.
            createConfiguration("/jetty.xml").configure(webAppContext);
            createConfiguration("/jetty-rewrite.xml").configure(server);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    private XmlConfiguration createConfiguration(String xml) throws IOException, SAXException {
        return new XmlConfiguration(Launcher.class.getResourceAsStream(xml));
    }
}

ResourcesConfiguration.java

public class ResourcesConfiguration extends ResourceConfig {

    public ResourcesConfiguration() {
        super();

        PackageNamesScanner resourceFinder = new PackageNamesScanner(new String[]{"com.fdilogbox.report.serveur.business.resources"}, true);
        registerFinder(resourceFinder);
        register(JacksonFeature.class);
    }
}

和我的资源文件:

@Path("builder")
@Component
public class ReportBuilderResource {

    @Autowired
    private ReportBuilderService reportBuilderService;

    @GET
    @Path("list")
    @Produces(MediaType.APPLICATION_JSON)
    public String[] findAll() {
        return reportBuilderService.findAllReport();
    }
}

如果我尝试访问“localhost:9090 / api / builder / list”,我会收到404错误.
但是,如果我尝试“localhost:9090 / bean”,我将获得JSon格式的所有bean.

我想我的conf中有错误,但我不知道在哪里.

解决方法:

我发现了我的错误:管理端口是9090但普通资源端口是8090.

上一篇:基于Java-Jersey的RESTful webservice:处理文件实体的路径参数的最佳方法是什么


下一篇:java – 为什么我在执行POST请求时得到405方法不允许