当前位置: 首页 > 知识库问答 >
问题:

Spring Boot参考指南-从app.groovy获取404示例

姚凯歌
2023-03-14

我遵循了Spring Boot参考指南,得到了这个错误

HTTP Status [404] – [Not Found]
Type Status Report
Message /
Description The origin server did not find a current representation for the target resource or is not willing to disclose that one exists.

这是密码

@RestController
class ThisWillActuallyRun {
    @RequestMapping("/")
    String home() {
        "Hello World!"
    }
}
spring run app.groovy

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v1.5.4.RELEASE)

2017-07-21 14:37:37.474  INFO 47637 --- [       runner-0] o.s.boot.SpringApplication               : Starting application on MacBook-Pro-2016.local with PID 47637 (started by moss in /Users/moss/java_ws/hello)
2017-07-21 14:37:37.477  INFO 47637 --- [       runner-0] o.s.boot.SpringApplication               : No active profile set, falling back to default profiles: default
2017-07-21 14:37:37.659  INFO 47637 --- [       runner-0] ationConfigEmbeddedWebApplicationContext : Refreshing org.springframework.boot.context.embedded.AnnotationConfigEmbeddedWebApplicationContext@3a0184b7: startup date [Fri Jul 21 14:37:37 ICT 2017]; root of context hierarchy
2017-07-21 14:37:38.831  INFO 47637 --- [       runner-0] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat initialized with port(s): 8080 (http)
2017-07-21 14:37:38.844  INFO 47637 --- [       runner-0] o.apache.catalina.core.StandardService   : Starting service [Tomcat]
2017-07-21 14:37:38.846  INFO 47637 --- [       runner-0] org.apache.catalina.core.StandardEngine  : Starting Servlet Engine: Apache Tomcat/8.5.15
2017-07-21 14:37:38.923  INFO 47637 --- [ost-startStop-1] org.apache.catalina.loader.WebappLoader  : Unknown loader org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader@c0454ed class org.springframework.boot.cli.compiler.ExtendedGroovyClassLoader$DefaultScopeParentClassLoader
2017-07-21 14:37:38.950  INFO 47637 --- [ost-startStop-1] o.a.c.c.C.[Tomcat].[localhost].[/]       : Initializing Spring embedded WebApplicationContext
2017-07-21 14:37:38.951  INFO 47637 --- [ost-startStop-1] o.s.web.context.ContextLoader            : Root WebApplicationContext: initialization completed in 1296 ms
2017-07-21 14:37:39.020  INFO 47637 --- [ost-startStop-1] o.s.b.w.servlet.FilterRegistrationBean   : Mapping filter: 'characterEncodingFilter' to: [/*]
2017-07-21 14:37:39.605  INFO 47637 --- [       runner-0] o.s.j.e.a.AnnotationMBeanExporter        : Registering beans for JMX exposure on startup
2017-07-21 14:37:39.674  INFO 47637 --- [       runner-0] s.b.c.e.t.TomcatEmbeddedServletContainer : Tomcat started on port(s): 8080 (http)
2017-07-21 14:37:39.678  INFO 47637 --- [       runner-0] o.s.boot.SpringApplication               : Started application in 12.556 seconds (JVM running for 14.572)

共有1个答案

岑光熙
2023-03-14

我只是使用SDKMAN切换回Spring CLIV1.5.3.Release并开始工作。

 类似资料:
  • Nmap 网络探测工具和安全 / 端口扫描器,Nmap 是一款开放源代码的 网络探测和安全审核的工具。 它的设计目标是快速地扫描大型网络,当然用它扫描单个 主机也没有问题。

  • 本书是《JSSE 参考指南》的中文翻译,同时提供了大量 JSSE 实例,帮助你快速理解 JSSE 的用法和原理。

  • 本章简要介绍了Spring Boot参考文档,可以视为文档其余部分的指引。您可以顺序地阅读本参考指南,也可以跳过不感兴趣的部分。

  • Pact 框架家族提供对消费者驱动的契约测试的支持。

  • etcd API 参考 特别说明 这个参考文档内容实在太多,英文原文的文档是一个巨型 markdown 文件,所有内容堆在一起,长的离谱…… 为了解决阅读困难的问题,我采用按照服务和方法拆分的方式,重新整理了一份 API 参考文档 并翻译,内容和原文一致,只是拆分成多节。 推荐阅读拆分的版本, 请用力戳下面的链接: API 参考文档

  • 此处为HBase版本的官方参考指南,从这里,你不仅能找到发布的 HBase 版本的最终文档,而且包括相关Javadoc和JIRA信息。