一、导入 maven 坐标依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> < ...
分类:
编程语言 时间:
2021-04-01 13:09:28
阅读次数:
0
1、Spring 框架概述 (1)轻量级开源 JavaEE 框架,为了解决企业复杂性,两个核心组成:IOC 和 AOP (2)Spring5.2.6 版本 2、IOC 容器 (1)IOC 底层原理(工厂、反射等) (2)IOC 接口(BeanFactory) (3)IOC 操作 Bean 管理(基于 ...
分类:
编程语言 时间:
2021-03-31 12:06:54
阅读次数:
0
关于Spring 1.Spring是一种轻量级(依赖小,需要就打入就行)开发框架,是很多模块的集合。分别核心容器,数据访问/集成,Web,AOP,工具,消息,和测试。 spring官网的6大特征:1.核心技术:依赖注入DI,AOP(面向切面编程)事件,资源,数据绑定等等。 2.测试:模拟对象,Spr ...
分类:
编程语言 时间:
2021-03-31 11:52:01
阅读次数:
0
启动项目突然报错,异常信息为一下情况: 解决方法: 修改当前项目下: .idea\workspace.xml 找到<component name="PropertiesComponent">,在里面添加<property name="dynamic.classpath" value="true" / ...
分类:
移动开发 时间:
2021-03-31 11:50:39
阅读次数:
0
@Cacheable(value = "CACHE_BOOK",key = "#username", condition = "#language = 1") public List<Book> getBooksByUsernameAndLanguage(String username, int l ...
分类:
编程语言 时间:
2021-03-30 13:51:01
阅读次数:
0
MVC MVC(Model View Controller 模型-视图-控制器)是一种 Web架构的模式。 特点:把业务逻辑、模型数据、用户界面分离开来,让开发者将数据与表现解耦。 MVC三要素: Model(数据模型)。是对客观事物的抽象。 比如知乎Live,Live就是一个模型,可以用Live类 ...
分类:
Web程序 时间:
2021-03-30 13:24:33
阅读次数:
0
版本对应关系大版本对应: Spring Cloud Spring Boot Angel版本 兼容Spring Boot 1.2.x Brixton版本 兼容Spring Boot 1.3.x,也兼容Spring Boot 1.4.x Camden版本 兼容Spring Boot 1.4.x,也兼容S ...
分类:
编程语言 时间:
2021-03-30 13:23:55
阅读次数:
0
使用 compile 'org.springframework.cloud:spring-cloud-starter-openfeign' @SpringBootApplication @EnableFeignClients(basePackages = {"com.yue.consumer"}) ...
分类:
其他好文 时间:
2021-03-30 13:11:20
阅读次数:
0
相信许多开发者都学习过SSH和Spring MVC,当然也有些人是从.net和Ruby on rails上了解的。这些框架设计的都是如此的健壮,以至于我们在年轻时都时不时地由心赞叹设计者的严谨的设计和强大的动手能力。但是我现在认为这些框架无论多么健壮,但已经不适合逐渐趋向敏捷开发的互联网架构了。至少 ...
分类:
其他好文 时间:
2021-03-30 13:09:02
阅读次数:
0
原文:https://blog.csdn.net/github_39577257/article/details/81842234 一、关于Feign在微服务架构开发是,我们常常会在一个项目中调用其他服务,其实使用Spring Cloud Rbbon就能实现这个需求,利用RestTemplate 的 ...
分类:
编程语言 时间:
2021-03-30 12:46:18
阅读次数:
0