问题1:Full authentication is required to access this resource
401 Unauthorized
"errors" : [ {
"message" : "Full authentication is required to access this resource",
"type" : "UnauthorizedError"
} ]
原因:
security-spring.xml中
个人解决方法:
具体路径指定先行,所有路径放在最后.
简单地加载顺序问题,引以为戒.
问题2:调用方法到dao的时候,dao值为空,报:null point exception
原因:
原来有的定义
自己调用其他人的方法,spring配置不齐全
解决方法:照着原始的,补全自己的配置
spring基本配置问题引以为戒
问题3:复用其他人的方法后,系统启动报错,类不能创建
原因:他人的类,已经在spring容器中创建,复用他人的类不需要自己在重新创建bean
解决方法:去除自己在spring的配置文件中的对应类的配置
spring基本配置问题引以为戒
问题4:两个兄弟项目,一个项目调用另一个项目的类,编译后此类无法解析:
The import xxx cannot be resolved
原因:除了idea 的依赖配置,代码中(extensioninfo.xml)也必须有依赖
解决方法: 1.项目clean一下,
2.导入的包全部删除重新alt+enter
3.项目使用的jdk重新统一导入
4.确定idea上的项目依赖和代码之间的依赖都不缺少并且没有错误
问题5:java.lang.IllegalStateException: Ambiguous mapping. Cannot map 'xxxx' method
原因:controller层的方法指定了两个相同的路径,或者应该用value指定路径名
解决方法:1.确定路径完全不一致
2.@RequestMapping(value = "
知识点1:
@ResponseBody
接口返回什么,页面显示什么,如果要渲染页面,就去除这个注释
知识点2:
java怎么转换Tue Jul 12 00:00:00 GMT+08:00 2016为2016-07-12 ?
public static void main(String[] args) throws ParseException {
String s = "Tue Jul 12 00:00:00 GMT+08:00 2016";
SimpleDateFormat sf1 = new SimpleDateFormat("EEE MMM dd hh:mm:ss z yyyy", Locale.ENGLISH);
Date date = sf1.parse(s);
SimpleDateFormat sf2 = new SimpleDateFormat("yyyy-MM-dd");
System.out.println(sf2.format(date));
}