06 2022 档案
摘要:swagger 不是特别好用。 访问的时候 http://localhost:30000/web/member-service/swagger-ui.html 30000:这个服务的端口 web/member-service:这个服务的 application.yml 中的 context-path
阅读全文
摘要:1、当集成做参数时,不要在 sql 里面对集成进行非空判断,如以下写法 <if test="instIdList!= null and instIdList.size() > 0"> and inst_id_ in <foreach collection="instIdList" item="ins
阅读全文
摘要:yml 配置数组 project.tools:[ ' aa ',' bb ',' cc ' ] 或 project.tools: - aa - bb - cc @Value 对复杂对象解析不好,复杂对象要用类去配置接收。(好像也和 springboot 版本有关系。 比如某个属性 以下方法貌似是不行
阅读全文