摘要: 其实就是重定向或者转发就行 转发:return "forward:/xxx"; 重定向:return "redirect:/xxx"; 阅读全文
posted @ 2019-05-23 14:56 一天到晚想名字 阅读(4046) 评论(0) 推荐(0) 编辑
摘要: 案例中用户的金额字段使用BigDecimal作为类型,直接使用减号"-"计算两个数值的值,报错了。 仔细想想BigDecimal是一个类,也不是基本数据类型,本来就不能用减号 BigDecimal本身提供了加减乘除的方法 加法 add()函数 减法subtract()函数乘法multipy()函数 阅读全文
posted @ 2019-05-23 14:35 一天到晚想名字 阅读(23357) 评论(1) 推荐(0) 编辑
摘要: 原文博客:https://blog.csdn.net/qq_41692413/article/details/81746103 将spring.thymeleaf.mode=HTML5(此行不写或这样写则表示默认严格检查) 改成spring.thymeleaf.mode=LEGACYHTML5 注意 阅读全文
posted @ 2019-05-23 13:51 一天到晚想名字 阅读(658) 评论(0) 推荐(0) 编辑
摘要: springboot启动时报WARN的警告,报错内容:Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration) 启动之后 阅读全文
posted @ 2019-05-23 13:44 一天到晚想名字 阅读(2642) 评论(0) 推荐(0) 编辑
摘要: 使用templates模板,已经在controller中,将变量的赋值了,但是html页面中,还是显示红色警告,cannot resolve xxx...。在运行时不会报错,如果看着不舒服,可以加上注解就可以了,使用Alt+回车,就能自动生成注解 模板文件: <!DOCTYPE html> <htm 阅读全文
posted @ 2019-05-23 11:17 一天到晚想名字 阅读(686) 评论(0) 推荐(0) 编辑