美文网首页
Feign PathVariable annotation wa

Feign PathVariable annotation wa

作者: 平常心 | 来源:发表于2020-03-31 09:04 被阅读0次

    现阶段网上给的解决方案都是加name,可以对于一个在别处运行正常的工程来说,加上几十上百个name是很费时的,找到最终的原因.
    I also meet exception, and spend some hours to solve it, finally the problem is made by refactor Method class privateGetParameters(), the solvation is compile use javac -parameter ..., if you use idea, add "-parameters" under Java Compiler-> Additonal command line parameters settings. if you use gradle, add
    apply plugin: 'java'
    compileJava {
    options.compilerArgs << '-parameters'
    }
    `
    note that clean your project before try again
    答案是写在github上的,就不翻译了.

    相关文章

      网友评论

          本文标题:Feign PathVariable annotation wa

          本文链接:https://www.haomeiwen.com/subject/zospkctx.html