首页 > 其他分享 >Springboot 中 主模块引用其他模块的Controller url路径总是不生效

Springboot 中 主模块引用其他模块的Controller url路径总是不生效

时间:2023-02-26 10:45:02浏览次数:57  
标签:Springboot url 9090 Project Controller 模块

Springboot 中 主模块引用其他模块的Controller url路径总是不生效

其他无关影响:主要有spring security 有权限过滤器影响、还有token的影响。

找问题方法:

使用了对比两个模块不同的Controller 接口

发现只多两行日志:

2023-02-26 09:39:57.162 DEBUG 24060 --- [nio-9090-exec-9] .s.o.p.e.FrameworkEndpointHandlerMapping : Looking up handler method for path /新Controller 
2023-02-26 09:39:57.162 DEBUG 24060 --- [nio-9090-exec-9] .s.o.p.e.FrameworkEndpointHandlerMapping : Did not find handler method for [/新Controller ]

启动时在Debug窗口中搜一下你的新模块。

再确认一下下面的常规操作:

pom.xml看是否配置新模块

Rebuild Project 

maven 中 Reload Project 

 

上面确认都有了基本上就对了

 

标签:Springboot,url,9090,Project,Controller,模块
From: https://www.cnblogs.com/xiaoruilin/p/17156232.html

相关文章

  • springboot3.0整合GraalVM-Native-Support,打包本地exe(native-image)。添加native-maven
    0.【idea新建一个springbootdemo项目】勾选GraalVMNativeSupport。其它略(太基础了)1.【环境准备】安装GraalVM、VisualStudio、NativeImage​​https://gitee.com/lishu......
  • java Duration.parse(String str)格式,以及springboot@ConfigurationProperties对其完
    总结:图Duration.parse()只接受的格式基于ISO-8601持续时间格式PnDTnHnMn.nSspringboot@ConfigurationProperties支持更多的格式@Data@Component@ConfigurationProperties(......
  • babel对ES6的模块化代码转换
    1安装工具babel-clibabel-preset-envbrowserify(webpack).babelrc配置{presets":["babel-preset-env"]2npxbabelsrc/js-ddist/js3打包npxbrowserifydist/js/app......
  • ES6模块化 export
    模块化模块化是指将一个大的程序文件,拆分成许多小的文件,然后将小文件组合起来。模块化的好处模块化的优势有以下几点:1.防止命名冲突2.代码复用3.高维护性   export是暴......
  • Python | 正则表达式(re模块)
    正则表达式使用单个字符串来描述、匹配一系列匹配某个句法规则的字符串re模块是python独有的匹配字符串的模块,该模块种提供功能基于正则表达式实现的,对于字符串进行模糊匹......
  • mac brew安装报错curl: (60) SSL certificate problem: certificate has expired
    curl:(60)SSLcertificateproblem:certificatehasexpiredMoredetailshere:https://curl.haxx.se/docs/sslcerts.html这个问题原因就是证书到期了,重新下载下证......
  • SpringBoot32 - 自动配置工作流程
    自动配置工作流程​ 自动配置是springboot技术非常好用的核心因素,这里需要先复习一下有关spring技术中bean加载相关的知识。bean的8种加载方式方式一:配置文件+<bean/>......
  • SpringBoot33 - 自定义starter
    自定义starter开发​ 自动配置学习完后,我们就可以基于自动配置的特性,开发springboot技术中最引以为傲的功能了,starter。其实通过前期学习,我们发现用什么技术直接导入对应......
  • SpringBoot项目创建
    1.通过SpringInitializr创建访问网址:https://start.spring.io/界面介绍Project:初始化SpringBoot类型SpringBoot:选择SpringBoot版本ProjectMetadata:项目的......
  • SpringBoot34 - 启动流程
    SpringBoot的启动流程以StartupApplication启动类为入口将returnnewSpringApplication(primarySources).run(args)分解为两步创建对象:newSpringApplication(pri......