关于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
版本对应关系大版本对应: 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
很明显之前学的方式 手动配置还是不够方便。就需要我们去学习Spring的自动装配! #autowire="byName" 定义几个简单类 package Demo; public class Cat { public void shout(){ System.out.println("miao~") ...
分类:
编程语言 时间:
2021-03-29 12:52:06
阅读次数:
0
<properties> <java.version>1.8</java.version></properties><parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent< ...
分类:
编程语言 时间:
2021-03-29 12:44:35
阅读次数:
0
该博文关于使用Spring前的环境配置,从Tomcat到Maven实现HelloServlet来验证环境搭建是否正确;其中有自己踩过的坑,以及解决方法,相信各位会有所收获! ...
分类:
编程语言 时间:
2021-03-29 12:39:39
阅读次数:
0