Giter Club home page Giter Club logo

Comments (1)

zuihou avatar zuihou commented on May 22, 2024 1

出错原因:服务在启动时,没有读取到nacos中该服务的配置文件

解决方案:

  1. 重启nacos
  2. 在正确的命名空间中新建dm-persnal-server.yml配置文件 (这个文件名,取决于你新建服务的spring.appclication.name)
  3. 将生成的项目src/main/resources目录下的 dm-persnal-server.yml 配置的内容复制到nacos
zuihou:
  swagger:
    enabled: true
    docket:
      tenant:
        title: xxx模块
        base-package: com.github.zuihou.xxxx.controller

server:
  port: 12345
  1. 重启你新建的服务。

  2. 重启后,端口能打印正确,但swagger文档还是没有显示出来,有3个原因

  • 新建的服务中确实没有任何Controller接口
  • 配置文件中base-package: com.github.zuihou.xxxx.controller 的路径没有配置正确
  • 新建的服务依赖不正确, server层需要依赖 controller 层,才能加载controller层的接口
  1. 若接口和端口都正确了, 直接访问服务可以显示接口,但通过gateway无法访问,则说明在gateway服务的配置文件中没有添加该服务的路由,加上即可。 如:
        - id: persnal
          uri: lb://dm-persnal-server
          predicates:
            - Path=/persnal/**
          filters:
            - StripPrefix=1

from lamp-cloud.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.