Bug:引入Feign后发现监控onApplication中ContextRefreshedEvent事件触发了2次或者4次。 【原理】在Spring的文档注释中提示到: Event raised when an {code ApplicationContext} gets initialized or refreshed.即当 ApplicationContext 进行初始化或者刷…
Lua的学习
table.concat(tb,";")
如果表里带表,则不能拼接,表里带nil也不能,都会报错
true和false也不可以,数字和字符串可以 if要和一个end配对,所以
if a>b then
return true
end
end
两个end …