推荐
专栏
教程
课程
飞鹅
本次共找到790条
mybatis注解
相关的信息
Chase620
•
4年前
MyBatis 源码分析 - 插件机制
1.简介一般情况下,开源框架都会提供插件或其他形式的拓展点,供开发者自行拓展。这样的好处是显而易见的,一是增加了框架的灵活性。二是开发者可以结合实际需求,对框架进行拓展,使其能够更好的工作。以MyBatis为例,我们可基于MyBatis插件机制实现分页、分表,监控等功能。由于插件和业务无关,业务也无法感知插件的存在。因此可以无感植入插件,在无形中增强
桃浪十七丶
•
4年前
SSM项目中遇到Could not autowire. No beans of ‘XXX‘ type found.错误
写代码时候遇到了这个问题Couldnotautowire.NobeansofHeadLineService'typefound.提示这个错误,是因为在Service的实现类HeadLineServiceImpl中忘记在类的头部加注解@Service解决如下图。
Stella981
•
3年前
Spring 源码(九)@Autowired注解实现原理(Spring Bean的自动装配)
@Autowired注解的实现过程,其实就是SpringBean的自动装配过程。通过看@Autowired源码注释部分我们可以看到@Autowired的实现是通过AutowiredAnnotationBeanPostProcessor后置处理器中实现的。AutowiredAnnotationBeanPostProcessor类图
Stella981
•
3年前
Spring Boot自动配置原理、实战
SpringBoot自动配置原理SpringBoot的自动配置注解是@EnableAutoConfiguration,从上面的@Import的类可以找到下面自动加载自动配置的映射。1.org.springframework.core.io.support.SpringFactoriesLoader.lo
Easter79
•
3年前
Tars http服务
http服务发布到平台后可以直接使用http请求来调用,注意发布服务时选择非tars协议!1,创建一个springboot项目,并在启动类添加 @EnableTarsServer注解@SpringBootApplication@EnableTarsServerpublicclassTarsSp
Wesley13
•
3年前
@Enable驱动逻辑
这个系列分为5篇1\.@Component,@Service等注解是如何被解析的(https://my.oschina.net/floor/blog/4325651)2\.@Enable驱动原理(https://my.oschina.net/floor/blog/4333081)3\.@EnableAutoConfiguratio
Wesley13
•
3年前
(八)MyBatis从入门到入土——自动映射的使用
这是mybatis系列第8篇。没看前文的建议先去【Java冢狐】公众号中查看前文,方便理解和掌握。在上一篇中我们介绍了一些mybatis使用查询的一些方式,特别是一对一查询和一对多查询进行了重点介绍。没看的推荐去公众号进行查看。今天我们介绍一下我们一直在使用的但是没有来得及做过多介绍的自动映射。什么是自动映射?介绍自动映射之前先
Wesley13
•
3年前
5分钟掌握JUnit要点
第一分钟:声明测试方法新建一个类,在要测试的方法上面添加@Test注解importorg.junit.Test;importstaticorg.junit.Assert.assertEquals;publicclassUserServiceTest{@Testpublic
Stella981
•
3年前
Spring Annotation 启动流程
SpringAnnotation启动流程本文将对Spring注解方式的启动流程进行分析author:huifer(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fhuifer)实例
Wesley13
•
3年前
@SessionAttributes 和 @SessionAttribute的区别
@SessionAttributes和@SessionAttribute的区别SpringMVC中有两个长得非常像的注解:@SessionAttributes和@SessionAttribute。我们先看下@SessionAttributes的定义:@SessionAttributes用于在请求之间的HTTPServlet会话中存储m
1
•••
38
39
40
•••
79