Do I have to recompile my application when I upgrade a third party jar?

后端 未结 5 1114
深忆病人
深忆病人 2020-12-19 21:38

I have a java application that uses some third party API. The third party jar files change fairly frequently because of all kinds of patches, but the API itself does not cha

5条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-19 22:05

    java is not C++: when you use a library you don't import a single line of code. You just load the library on request and use that. For this reason you don't need to recompile your code :)

提交回复
热议问题