摘要: 1 char *s_gets(char *st, int n) 2 { 3 char *ret_val; 4 char *find; 5 ret_val = fgets(st, n, stdin); // 从stdin中读取n-1个字符 6 if(ret_val) 7 { 8 find = strc 阅读全文
posted @ 2023-03-18 11:21 Sun.! 阅读(46) 评论(0) 推荐(0)
摘要: 版本问题 我用spring boot2.2.4 和 spring cloud Finchley 就会报这个启动错误 但是换成spring boot 2.0.1 就好了! 版本兼容问题吧 阅读全文
posted @ 2020-02-20 16:07 Sun.! 阅读(2599) 评论(0) 推荐(0)
摘要: Caused by: org.springframework.beans.factory.NoUniqueBeanDefinitionException: No qualifying bean of type [org.springframework.jms.core.JmsTemplate] is 阅读全文
posted @ 2019-07-06 00:12 Sun.! 阅读(2605) 评论(0) 推荐(0)