gpt4 book ai didi

java - Spring Boot 应用程序未在 Tomcat 中配置的端口号上启动

转载 作者:行者123 更新时间:2023-12-02 02:01:51 26 4
gpt4 key购买 nike

我正在 spring 工具套件工具中运行示例 spring boot 应用程序。配置端口后,我无法从浏览器启动应用程序。我收到 404 未找到错误。Spring boot在tomcat上正常运行。

应用程序属性

hello.greeting=很高兴见到你

服务器端口=9874

有人可以帮我解决这个问题吗?

package demo;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class HelloBootApplication {

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


package demo;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;

@RestController
public class HelloController {

@Autowired
HelloProperties props;

@RequestMapping("/hello")
public String hello(@RequestParam String name) {
return props.getGreeting()+name;
}

}

package demo;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

@Component
@ConfigurationProperties("hello")
public class HelloProperties {
private String greeting = "Welcome ";

public String getGreeting() {
return greeting;
}

public void setGreeting(String greeting) {
this.greeting = greeting;
}
}

2018-07-22 17:17:32.798 INFO 11824 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
2018-07-22 17:17:32.952 INFO 11824 --- [ main] o.s.j.e.a.AnnotationMBeanExporter : Registering beans for JMX exposure on startup
2018-07-22 17:17:33.000 INFO 11824 --- [ main] o.s.b.w.embedded.tomcat.TomcatWebServer : Tomcat started on port(s): 9874 (http) with context path ''
2018-07-22 17:17:33.006 INFO 11824 --- [ main] demo.HelloBootApplication : Started HelloBootApplication in 2.083 seconds (JVM running for 2.862)

这是 Spring Boot 应用程序,在下面的链接上收到 404 Not Found http://localhost:9874/

最佳答案

您的网址错误。您必须使用 RequestParam 名称调用 url。

使用此网址http://localhost:9874/hello?name=test

关于java - Spring Boot 应用程序未在 Tomcat 中配置的端口号上启动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51464453/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com