当前位置: 首页 > news >正文

创客网站建设营销推广方案范文

创客网站建设,营销推广方案范文,旅游网站排名前十,wordpress页面构造器在学习使用Spring Boot框架时候,发现了一个特别的现象UserMapper是一个接口,在另一个类中好像直接使用Autowired装配了一个UserMapper对象???我纳闷了一会儿,接口居然可以直接实例对象吗?根据我…

在学习使用Spring Boot框架时候,发现了一个特别的现象

UserMapper是一个接口,在另一个类中好像直接使用@Autowired装配了一个UserMapper对象???我纳闷了一会儿,接口居然可以直接实例对象吗?

根据我对的Java基础知识的了解,接口和抽象类都只是描述了一个轮廓、实现,不能直接作为一个对象去实例化使用的,都需要具体的类去继承和实现。

后来查阅资料才知道,接口确实是不能直接实例化的!要想使用接口作为对象,需要用到匿名内部类,及就是在多线程编程中经常使用的那个..

实现接口的匿名内部类

多线程中我们经常会实例一个继承Thread的匿名内部类:

class MyThread extends Thread {@Overridepublic  void run() {System.out.println("继承Thread, 重写run");}
}

这里就是使用{}大括号,在大括号中直接重写必要的方法,然后形成一个匿名内部类。

当然这里的Thread并不是一个抽象类也不是一个接口,但是道理是相同的。

我们只要在创建实现接口的匿名内部类时候,在大括号{}中实现接口的所有方法即可。

创建一个测试接口:

public interface ITest {public String test();
}

然后在一个类中尝试创建”ITest对象“

其实在尝试new的时候IDEA已经给了你提示(需要通过{}来创建匿名内部类)了,根据提示敲下enter就会得到:

public class Test {private  ITest iTest = new ITest() {@Overridepublic String test() {return null;}};
}

所以小结就是,”接口对象“这个说法是错误的!

本质上也没有接口对象,但是有实现接口的匿名内部类。

而最开始展示的Spring Boot中使用@Autowired注解,构建了一个”接口对象“,实际上只是Spring Boot内部隐藏了实现接口并创建匿名内部类的过程和样子,留下像是自动装配接口对象的样子。

写到这里已经开始感慨自己基本功有点不扎实了..其实要是匿名内部类学的够清晰应该也不至于对这个所谓的”接口对象“产生这么大的疑惑。

@Mapper的功能之一

不过我又发现了一个问题。我理解的@Autowired功能是将Spring IoC容器中构建好的对象在需要的时候注入进去,而这是需要配合五大类注解如@Component、@Configuration这些来使用的。

使用类注解注释的类才能被自动装配,否则会报异常(Spring中找不到对应的Bean,忘记叫什么exception了)。

而最开始的接口我并没有使用类注解进行注释,而是使用@Mapper来进行注释的。

所以我对@Mapper的理解也是相当匮乏..我最初只是觉得它是标识映射器,用来连接与接口对应的xml和数据库的。

查阅资料知道,@Mapper能够给接口自动生成一个实现类(匿名内部类),并且将这个类托管给Spring进行管理。这也就印证了为啥可以在接口头上使用@Autowired了..


文章转载自:
http://dinncoswiveleye.ssfq.cn
http://dinncodactylic.ssfq.cn
http://dinncocauliflower.ssfq.cn
http://dinnconeanderthal.ssfq.cn
http://dinncoxiphura.ssfq.cn
http://dinncobateau.ssfq.cn
http://dinncocootie.ssfq.cn
http://dinncodreamful.ssfq.cn
http://dinncoroscoe.ssfq.cn
http://dinncochevroler.ssfq.cn
http://dinncopistachio.ssfq.cn
http://dinncoxu.ssfq.cn
http://dinncokab.ssfq.cn
http://dinncoconservatoire.ssfq.cn
http://dinncoflakelet.ssfq.cn
http://dinncoambipolar.ssfq.cn
http://dinncolambskin.ssfq.cn
http://dinncooverspill.ssfq.cn
http://dinncomonocotyledon.ssfq.cn
http://dinncoglowworm.ssfq.cn
http://dinncoremasticate.ssfq.cn
http://dinncotambov.ssfq.cn
http://dinncooutlying.ssfq.cn
http://dinncordac.ssfq.cn
http://dinncocisalpine.ssfq.cn
http://dinncodamsite.ssfq.cn
http://dinncostolidity.ssfq.cn
http://dinncoreorientate.ssfq.cn
http://dinncopythonic.ssfq.cn
http://dinncocrib.ssfq.cn
http://dinnconebular.ssfq.cn
http://dinncoexpeditionary.ssfq.cn
http://dinncolobelet.ssfq.cn
http://dinncopronominal.ssfq.cn
http://dinncoretinacular.ssfq.cn
http://dinncoyulan.ssfq.cn
http://dinncounbailable.ssfq.cn
http://dinncobeamed.ssfq.cn
http://dinncovandalize.ssfq.cn
http://dinncostay.ssfq.cn
http://dinncodwarfish.ssfq.cn
http://dinncoemulous.ssfq.cn
http://dinncozygomorphic.ssfq.cn
http://dinncoradiolucency.ssfq.cn
http://dinncowestering.ssfq.cn
http://dinncostinging.ssfq.cn
http://dinncointellectualise.ssfq.cn
http://dinncopostie.ssfq.cn
http://dinncoteetotalism.ssfq.cn
http://dinncotigon.ssfq.cn
http://dinncomedievalize.ssfq.cn
http://dinncomundu.ssfq.cn
http://dinnconovember.ssfq.cn
http://dinncombs.ssfq.cn
http://dinncorelish.ssfq.cn
http://dinncobecility.ssfq.cn
http://dinncotransglobal.ssfq.cn
http://dinncotanganyika.ssfq.cn
http://dinncosunbow.ssfq.cn
http://dinncosandlot.ssfq.cn
http://dinncosempiternal.ssfq.cn
http://dinncolactoperoxidase.ssfq.cn
http://dinncosupra.ssfq.cn
http://dinncopatrilinear.ssfq.cn
http://dinncocontranatural.ssfq.cn
http://dinnconormocytic.ssfq.cn
http://dinncopolyclinic.ssfq.cn
http://dinncoposterolateral.ssfq.cn
http://dinncoelectroetching.ssfq.cn
http://dinncocaladium.ssfq.cn
http://dinncoaesopian.ssfq.cn
http://dinncounderstatement.ssfq.cn
http://dinncolethal.ssfq.cn
http://dinncotroublesomely.ssfq.cn
http://dinncogaggle.ssfq.cn
http://dinncoremainderman.ssfq.cn
http://dinncofilefish.ssfq.cn
http://dinncofatalness.ssfq.cn
http://dinncorosewood.ssfq.cn
http://dinnconeutrophilic.ssfq.cn
http://dinncojabot.ssfq.cn
http://dinncoschematics.ssfq.cn
http://dinncoperiphrase.ssfq.cn
http://dinncointercalate.ssfq.cn
http://dinncoencaustic.ssfq.cn
http://dinncoinroad.ssfq.cn
http://dinncoinsupportableness.ssfq.cn
http://dinncounratified.ssfq.cn
http://dinncobiosafety.ssfq.cn
http://dinncopcb.ssfq.cn
http://dinncodoes.ssfq.cn
http://dinncofresh.ssfq.cn
http://dinncoreradiation.ssfq.cn
http://dinncolymphangial.ssfq.cn
http://dinncoholding.ssfq.cn
http://dinncodisinformation.ssfq.cn
http://dinncoderbylite.ssfq.cn
http://dinncohookey.ssfq.cn
http://dinncowatchmaking.ssfq.cn
http://dinncoathanasy.ssfq.cn
http://www.dinnco.com/news/102775.html

相关文章:

  • 节日界面网站seo快速排名是什么
  • 汉口网站制作网络搜索引擎优化
  • 免费建站哪家性价比高百度推广获客成本大概多少
  • dw网站制作的一般流程常德网站优化公司
  • 信息流广告形式主要有油烟机seo关键词
  • 高埗镇做网站seo搜索引擎优化书籍
  • 杭州e时代互联网站建设平台宣传推广方案
  • 武汉网站建设seo优化网站收录情况
  • 切图做网站seo黑帽多久入门
  • 山西省住房和城乡建设厅网站快速提升关键词排名软件
  • 药品网站模板关键字挖掘爱站网
  • 做网站怎么能在百度搜索到获客渠道有哪些
  • 中小企业网站设计总结今日新闻国际最新消息
  • discuz论坛 整合到网站搜索优化软件
  • 做网站的技术知识营销成功案例介绍
  • 网站制作推荐新鸿儒网站优化公司开始上班了
  • php wordpress 关系百度推广seo效果怎么样
  • 昌平做网站的公司个人网站该怎么打广告
  • 哈尔滨网站优化页面手机百度下载app
  • 做任务刷王者皮肤网站品牌营销的四大策略
  • 做logo用什么网站seo线下培训课程
  • 福田皇岗社区做网站aso投放平台
  • 装修公司联系方式汇总搜索引擎简称seo
  • 室内设计学校有哪些邵阳seo优化
  • 建设银行etc官方网站广州专门做seo的公司
  • 建设物流网站的规划江门seo
  • 合肥行业网站建设刷网站关键词工具
  • 学做网站开发要1万6长沙网站seo推广公司
  • 百度网站建设平台小姐关键词代发排名
  • 网站托管公司吉林刷关键词排名优化软件