spring
文章平均质量分 92
hhah1122
功不唐捐,日积以至千里
展开
-
Could not resolve type alias
https://blog.csdn.net/qq_34491508/article/details/83420887https://blog.csdn.net/yu0_zhang0/article/details/81299017用mybatis 一直报这个错 一直没改好后来仔细看2. resultMap和resultType写混了。通常这种情况会出现...转载 2019-04-08 14:49:27 · 2586 阅读 · 0 评论 -
Spring ioc
1,ioc----基于配置文件 xml1,xml配置文件2,dom4j 解析xml3,工厂设计模式4,反射思想 : 高内聚 低耦合 !!!!!ioc 底层原理(1)传统方法:public class A{public void add(){}}//调用类里面的方法User user = new User();user....转载 2019-07-09 19:03:36 · 136 阅读 · 0 评论 -
Spring Boot 中必须掌握的 45 个注解
https://zhuanlan.zhihu.com/p/68190157Spring Boot 中必须掌握的 45 个注解爱码仕III微信公众号【Java架构筑基】关注他104 人赞同了该文章点关注,不迷路;持续更新Java架构相关技术及资讯热文!!!一.SpringBoot/spring@SpringBootApplication:包含@Conf...转载 2019-06-24 21:24:15 · 465 阅读 · 0 评论 -
aop 有什么用
https://blog.csdn.net/baidu_33403616/article/details/70304051https://blog.csdn.net/ljxzdn/article/details/79404353Spring Aop到底有什么用处?2017年04月20日 20:28:46再写三行阅读数 21795假如没有aop,在做日志处理的时候,我们会在...转载 2019-06-19 15:48:09 · 1022 阅读 · 0 评论 -
深入分析@Transactional的用法
https://www.cnblogs.com/hjwublog/p/5626465.html文章主目录事务的基本概念 编程式事务与声明式事务 使用声明式事务 @Transactional 深入使用 总结关键词:事务, 编程式事务,声明式事务、spring 事务管理、AOP事务增强、@Transactional在分析深入分析@Transactional的使用之前,...转载 2019-06-18 22:42:45 · 1329 阅读 · 0 评论 -
解决 spring-test 出现 Failed to load ApplicationContext 的异常
https://www.cnblogs.com/kinome/p/9628830.html解决方法:只需要在@ContextConfiguration中把(idea)resources下的所有spring配置文件名写齐全,就不会因为加载不到没写的spring配置文件而加载失败了,写全就能成功加载完所有的配置文件进而全部加载成功了例:@RunWith(SpringJU...转载 2019-06-13 23:21:29 · 22349 阅读 · 1 评论 -
Spring单元测试ContextConfiguration注解不能使用 @不出来 没反应
https://blog.csdn.net/qq_44549134/article/details/90440257解决Spring单元测试ContextConfiguration注解不能使用这是一个在引入pom依赖关系时,出的问题,具体解决办法如下org.springframework spring-test 5.0.5.RELEASEtest改为:org.springf...转载 2019-06-13 22:11:53 · 4355 阅读 · 5 评论 -
SVN上的代码被别人删除,然后本地更新代码丢失
SVN上的代码被别人删除,然后本地更新代码丢失查了方法没看到,用了一个办法项目文件夹,右键 update to revision点 show log 找到之前的没删掉的版本哈哈 代码回来了!...原创 2019-05-17 10:19:14 · 1115 阅读 · 0 评论 -
Error Code : 1064 You have an error in your SQL syntax; check the manual that corresponds to your M
情况一:Query : select * from order LIMIT 0, 1000Error Code : 1064You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use ne...转载 2019-04-19 11:25:12 · 14000 阅读 · 0 评论 -
content-type 遇到的问题详解
https://www.cnblogs.com/kaiblog/p/7565231.html我们经常需要在HttpResponse中设置一些headers,我们使用Spring MVC框架的时候我们如何给Response设置Header呢?Sooooooooooooo easy, 看下面的代码: 1 2 3 4 5 6 7 ...转载 2019-07-15 22:57:06 · 8476 阅读 · 1 评论