上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 122 下一页
摘要: 一、@Conditional源码 springboot的自动配置是通过@Conditional注解(条件判断)实现的. @Conditional是Spring4版本新提供的一种注解,它的作用是按照设定的条件进行判断,把满足判断条件的bean注册到Spring容器。 package org.sprin 阅读全文
posted @ 2023-04-19 16:02 与f 阅读(74) 评论(0) 推荐(0)
摘要: 1.Java注解的描述 java注解又叫做java标注,是java的一种注释机制,在jdk5.0引入。其可以作用在类、方法、变量、参数和包上。另外,其可以通过反射来获取注解标注的内容。可以说注解就是实现了Annotation的接口 2.Java注解的分类 Java注解分类的话,大致可以分为三类,分别 阅读全文
posted @ 2023-04-18 16:06 与f 阅读(206) 评论(0) 推荐(0)
摘要: 1.问题描述 在Idea的spring工程里,经常会遇到Could not autowire. No beans of 'xxxx' type found的错误提示。(但程序的编译和运行都是没有问题的,有时候也有可能会报错,无法运行程序),这个错误提示并不会产生影响。但红色的错误提示看起来很不舒服。 阅读全文
posted @ 2023-04-18 10:29 与f 阅读(1072) 评论(0) 推荐(0)
摘要: 1.问题 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found) Springboot项目中,在mybatis中mapper数据库操作接口(有的称DAO,有的直接说mapper,都只同一文件)与m 阅读全文
posted @ 2023-04-17 16:36 与f 阅读(2824) 评论(0) 推荐(0)
摘要: 错误 2023-04-15 11:56:16.025 INFO 12028 [ restartedMain] ConditionEvaluationReportLoggingListener : Error starting ApplicationContext. To display the co 阅读全文
posted @ 2023-04-15 12:00 与f 阅读(743) 评论(0) 推荐(0)
摘要: springboot整合mybatis <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>8.0.29</version> </dependency> <depen 阅读全文
posted @ 2023-04-13 16:55 与f 阅读(33) 评论(0) 推荐(0)
摘要: springboot整合redis 1.依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 阅读全文
posted @ 2023-04-13 16:47 与f 阅读(41) 评论(0) 推荐(0)
摘要: springboot整合Junit https://www.cnblogs.com/fps2tao/p/13824509.html 阅读全文
posted @ 2023-04-13 16:23 与f 阅读(58) 评论(0) 推荐(0)
摘要: 1.搭建 springboot的搭建可以通过网页版,也可以通过idea. 常用的版本构件maven和gradle等 springboot的项目中pom.xml文件(有个父级依赖规定了大部分用到jar的版本),之后只需依赖名称即可. 2.配置文件 配置文件(优先级依次降低) application.p 阅读全文
posted @ 2023-04-11 16:13 与f 阅读(67) 评论(0) 推荐(0)
摘要: 一、核心概念1、TTS(Text-To-Speech,从文本到语音) 我们比较熟悉的ASR(Automatic Speech Recognition),是将声音转化为文字,可类比于人类的耳朵。 而TTS是将文字转化为声音(朗读出来),类比于人类的嘴巴。 大家在siri等各种语音助手中听到的声音,都是 阅读全文
posted @ 2023-04-10 09:12 与f 阅读(3425) 评论(0) 推荐(0)
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 122 下一页