跨域登录请求时,一直显示未登录,但后台已设置运行CROS跨域请求。
通过Fiddler抓包发现登录数据没有问题,但请求未携带cookies,后台无法获取cookie。原因是两次请求不是同一个sessionid,服务器端,认为还没有登陆。

解决方法是:
允许客户端带上cookie,ajax设置
xhrFields:{
withCredentials:true
},

再次请求,登录成功

springboot异常:java.lang.NoClassDefFoundError: antlr/RecognitionException解决

1
java.lang.NoClassDefFoundError: antlr/ANTLRException    at org.hibernate.hql.ast.ASTQueryTranslatorFactory.createQueryTranslator(ASTQueryTranslatorFactory.java:58)    at org.hibernate.engine.query.HQLQueryPlan.(HQLQueryPlan.java:98)    at org.hibernate.engine.query.HQLQueryPlan.(HQLQueryPlan.java:80)    at org.hibernate.engine.query.QueryPlanCache.getHQLQueryPlan(QueryPlanCache.java:98)    at org.hibernate.impl.AbstractSessionImpl.getHQLQueryPlan(AbstractSessionImpl.java:156)    at org.hibernate.impl.AbstractSessionImpl.createQuery(AbstractSessionImpl.java:135)    at org.hibernate.impl.SessionImpl.createQuery(SessionImpl.java:1760)    at DataAccess.WKS.Repositories.WksRepositoryBase.LoadAllData(WksRepositoryBase.java:193)    at Run.main(Run.java:13)Caused by: java.lang.ClassNotFoundException: antlr.ANTLRException    at java.net.URLClassLoader$1.run(Unknown Source)    at java.net.URLClassLoader$1.run(Unknown Source)    at java.security.AccessController.doPrivileged(Native Method)    at java.net.URLClassLoader.findClass(Unknown Source)    at java.lang.ClassLoader.loadClass(Unknown Source)    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)    at java.lang.ClassLoader.loadClass(Unknown Source)    ... 9 more

项目编译时,由于网络原因下载jar包antlr可能下载不完成或文件损坏造成的,根源还是找不到antlr的jar包,此时可以删掉.m2/repository/antlr下的所有文件,然后重新maven update下载后就OK了!

转自:https://blog.csdn.net/lc5204118/article/details/78298267

摘录原文:https://baijiahao.baidu.com/s?id=1714918047822342732&wfr=spider&for=pc
本文来源:美加双城记(ID:NewYorkEducation),作者:李立强

第三,对全球化,和高度依赖消费以及全球分工的深层次反思。

北美对全球供应链的依赖到什么程度?

去年读到过一个媒体分析,对美国邮政和快递行业,极其廉价的运费的分析。从中国万里迢迢,运来一个马克杯的成本价,都低于在街道对面的小企业去做一个。是不是很荒谬?中美年青一代,身体差不多,教育差不多,技能不相上下。

阅读全文 »

1002 写出这个数 (20 分)

读入一个正整数 n,计算其各位数字之和,用汉语拼音写出和的每一位数字。

输入格式:

阅读全文 »