JBoss中的Spring Boot返回错误404

时间:2018-08-23 07:13:45

标签: java spring spring-boot jboss

我有一个示例Spring Boot应用程序。它可以在Tomcat服务器中工作,但是当我产生战争并将其部署到jboss服务器(7.1.1)中时,我会遇到404错误。

这是我的restController示例:

searchBar.delegate = proxy

这是我的主要课程:

import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloWorldController {
   @RequestMapping(value="/test")
   public String sayHello() {
      return "Hello Spring Boot!!";
   }
}

我添加了一个application.properties文件,并在此行中添加了它:

server.contextPath = / *

我的jbos-web.xml是这样的:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.builder.SpringApplicationBuilder;
import org.springframework.boot.web.support.SpringBootServletInitializer;

@SpringBootApplication
public class MainApp extends SpringBootServletInitializer {
   public static void main(String[] args) {
      SpringApplication.run(MainApp.class, args);
   }
   @Override
   protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
   return application.sources(MainApp.class);
   }
}

最后我的pom.xml如下:

> <?xml version="1.0" encoding="UTF-8"?> <!--   this is really not
> needed...   you can just build (or rename WAR file to)
> spring-boot-jboss.war
> --> <!DOCTYPE jboss-web> <jboss-web>   <context-root>/test</context-root> </jboss-web>

我通过使用以下网址运行应用程序: http://localhost:8080/test/test,但返回404错误。

谢谢您的帮助。

4 个答案:

答案 0 :(得分:1)

我在JBoss EAP 6.4 / spring boot 1.5上遇到了同样的问题,并且解决了添加此属性的问题

server.servlet-path=/*

如这篇文章中所述:Deploying spring boot on JBOSS EAP 6.1

尽管在JBoss EAP 7.1上没有此属性,它也能正常工作。

答案 1 :(得分:0)

您的jboss-web.xml应该位于scr/main/webapp/WEB-INF/中,然后Jboss将在开始时使用它并使用您定义的context-root

答案 2 :(得分:0)

在MainApp类上添加ComponentScan批注。 春季组件扫描程序可能找不到您的@RestController批注

@SpringBootApplication
@ComponentScan(basePackages = {"com.blabla.*"})
public class MainApp extends SpringBootServletInitializer {
...
}

答案 3 :(得分:0)

我不确定您通过使用下面的属性到底要达到什么目的

server.contextPath = /*

但是,如果要为应用程序提供根上下文路径,则它必须是某个字符串值,而不是astrike(代表模式)。而且,实际上这是不允许的。如果我在使用tomcat服务器时使用了相同的属性。 Tomcat在注册Web模块时抛出以下错误

2018-08-23 21:26:58.500 ERROR 13612 --- [ost-startStop-1] org.apache.tomcat.util.modeler.Registry  : Error registering Tomcat:j2eeType=WebModule,name=//localhost/*,J2EEApplication=none,J2EEServer=none 

如果您尝试以url身份访问

http://localhost:8080/test/test 

然后,使用以下内容更新属性文件

server.contextPath = /test

否则,请勿将此属性添加到application.properties文件中,您可以访问

http://localhost:8080/test