
Spring
文章平均质量分 52
spring
tanxinji
站在巨人的肩膀上
展开
-
windows用docker下载安装redis
1 .从官网下载到本地 打开cmd输入docker pull redis:latest 等几分钟下载完毕 2.创建redis容器 docker run --name redis -p 6379:6379 redis 创建名为redis的容器 ,第一个redis为容易的名字, 3.进入redis客户端 在cmd输入docker exec -it redis bash 其中redis是自己设置的容器名 然后再输入redis-cli 这个时候就可以输入redis命令了。 输入exi原创 2022-05-21 19:25:02 · 854 阅读 · 0 评论 -
windows下redis的文件结构
1 redis的 配置文件 redis.windows.conf redis-windows-service.conf。可以设置端口号,密码,持久化rdb,aof ,日志等信息。2.reids的性能检测工具redis-benchmark.exe3.redis服务器端 redis-cserver.exe 直接双击即可运行,redis使用需要服务器端的启动,4.redis客户端 redis-cli.exe 双击运行,开启redis-server.exe以后,可以通过客户端来操作reids。.原创 2022-05-24 20:14:24 · 307 阅读 · 0 评论 -
windows下载和使用redis
1.下载redis 点击进入该网站https://github.com/microsoftarchive/redis/releases/tag/win-3.2.100 向下滑,点击下述的 Redis-x64-3.2.100.zip 下载压缩包。 下载后,将压缩包解压到任意盘,我是解压到了D:\redis 2.使用redis 先启动服务端程序,双击redis-server.exe 。 会出现如下程序,不要把它删了,可以把它最小化。 启动客户端程序,用来输入执行操作redis。双击r原创 2022-05-19 18:14:34 · 305 阅读 · 0 评论 -
Thymeleaf入门
一、创建一个Maven项目 如下创建了名为ctest_thymeleaf项目二、导入坐标 在pox.xml加入thymeleaf坐标<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.6.5</ve原创 2022-03-27 14:32:11 · 760 阅读 · 0 评论 -
SpringBoot项目网页加载出现Whitelabel Error Page
运行SpringBoot项目之后,在浏览器输入localhost:8081 ,出现如下界面,1.有index.html文件2.端口没有写错 到后面发现pom.xml导错springboot依赖了,换上正确的依赖就好了。。。好无语 <dependencies> <dependency> <groupId>org.springframework.boot</groupId>原创 2022-05-18 07:00:00 · 942 阅读 · 0 评论 -
SpringBoot日志
一、创建一个Maven项目 创建一个名为springboot_loggin的Maven项目二、导入坐标 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.6.4</version>原创 2022-03-14 19:29:24 · 734 阅读 · 0 评论 -
解决SpringBoot测试时出现:Unable to find a @SpringBootConfiguration,you need to use @ContextConfiguration
在测试类中找不到带有@SpringBootApplication的启动类。 运行TestMy类的test1()方法,报错。并且book出现了红色下划线。 解决。将测试类的路径和Application类路径一致即可。就是跟带有@SpringBootApplication的启动类的包路径一致。 如下所示: 之后运行就正常了。...原创 2022-03-06 19:54:17 · 7002 阅读 · 1 评论 -
Maven统一版本号
为了方便统一版本号。加一个 使用的话就是 示例:原创 2022-06-13 09:42:59 · 759 阅读 · 0 评论 -
SpringBoot如何修改默认端口号
一、添加-Dserver.port=端口号 下面示例,将默认端口号修改为6666 -Dserver.port=6666 运行结果:二、在.properties文件添加server.port=端口号 下面示例,将默认端口号修改为7666。 在resources文件下创建一个db.properties 在db.properties中添加 server.port=7666 运行结果:三、添加.yml文件 下面示例,将默认端口号修改为8888。 在application.ym原创 2022-03-05 16:59:26 · 25346 阅读 · 6 评论 -
Spring Boot入门-快速搭建网页
官网链接: Developing Your First Spring Boot Application 使用Spring Boot可以极大方便开发。下面以一个网页的请求和响应为例。一、创建一个Maven项目 创建一个名为test_springboot的Maven项目。二、导入坐标 在pom.xml中导入坐标<parent> <groupId>org.springframework.boot</groupId> <art原创 2022-02-27 00:01:57 · 9750 阅读 · 0 评论 -
Spring获取所有被托管的类
有的时候想获取被Spring托管的类,并且想对其进行修改。 步骤: 创建一个类实现ApplicationContextAware接口,加上注解@Component 。重写setApplicationContext(ApplicationContext applicationContext)方法,在此方法中可以获取ApplicationContext对象 示例:@Componentpublic class GetTest implements ApplicationContextAware {原创 2022-05-17 18:43:14 · 463 阅读 · 0 评论 -
Eureka的使用
搭建集群,使用逗号分隔 运行EurekaServer类 运行EurekaClient1原创 2022-07-09 07:00:00 · 324 阅读 · 0 评论 -
解决Origin parameter:http://localhost:5555/actuator/hystrix.stream is not in the allowed list of proxy
2022-04-09 20:52:36.615 WARN 5688 — [nio-9001-exec-1] ashboardConfiguration$ProxyStreamServlet : Origin parameter: http://localhost:6666/actuator/hystrix.stream is not in the allowed list of proxy host names. If it should be allowed add it to hystrix.da.原创 2022-04-09 21:00:40 · 578 阅读 · 0 评论 -
Spring RestTemplate远程调用
之前在一个服务中调用另一个服务的请求,可以使用UrlConnection类来拼接Http请求头,这个时候就会发现,很麻烦,使用SpringRestTemplate的话 进一步封装了拼接的代码,相对于来说较为便捷。 Spring RestTemplate封装了http请求,可以较为方便的在一个服务中调用另一个服务的请求。 说明: 下面的例子是 使用端口为 8075的服务 ,通过get/id来远程调用端口8086的服务的请求。 2、调用服务中的SpringBoot启动类注入RestTemplate原创 2022-07-08 15:00:37 · 577 阅读 · 0 评论 -
Java实现前端文件上传
前端通过Vue中$ref获取文件数据,后端使用用MultipartFile类型接受文件。实现的是存放在本地,可以修改为存到hdfs,云服务器上。 前端代码: 返回到前端的数据 控制层: 将文件上传到本地。 ...原创 2022-07-06 07:00:00 · 1415 阅读 · 0 评论 -
如何用注解使用Spring Aop
一、在配置类中加入`@EnableAspectJAutoProxy`注解二、业务类需要被Spring托管三、切面类需要被Spring托管,并且需要加上注解, 然后实现切面即可原创 2022-07-01 07:00:00 · 249 阅读 · 0 评论 -
解决Spring测试出现@EnableAsync annotation metadata was not injected
Spring测试的时候,出现如下报错,非常奇怪Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘org.springframework.context.annotation.internalAsyncAnnotationProcessor’ defined in class path resource [org/springframework/schedul原创 2022-06-23 07:00:00 · 917 阅读 · 0 评论 -
Spring如何使用注解方案测试
一、在测试类加入以下注解:@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(classes = {需要测试的配置类类名.class})二、在测试类里创建一个方法,加上@Test`注解三、选中有@Test方法名右键运行即可...原创 2022-06-22 10:37:51 · 865 阅读 · 0 评论 -
Spring连接Mysql数据库
一、创建一个Maven项目二、导入坐标 在pom.xml加入如下坐标,并且点击右上角刷新。 <dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <version>原创 2022-03-11 20:34:10 · 11508 阅读 · 6 评论 -
Spring如何输出HelloWorld
平常我们创建类时是自己通过new对象来实现。Spring容器则可以帮我们创建对象。 官网学习链接:The IoC Container一、创建一个Maven项目 创建名为ctest_spring的Maven项目二、导入坐标 在pom.xml加入如下坐标。并且点击右上角的刷新。等待jar下载完毕。 <dependencies> <dependency> <groupId>org.springframewo原创 2022-03-02 20:15:28 · 570 阅读 · 0 评论 -
Spring容器懒加载和多实例(xml方案)
ApplicationContext类被创建后会默认加载全部Bean实例,并且每次调用 getBean(String id)是用一个id时,都是用了一个实例。下面就要使用懒加载和多实例属性来优化。 下述所使用的样例: Person类:package com;public class Person { Person(){ System.out.println("调用了Person类的构造函数"); }} springtest.xml文件:<?xml原创 2022-02-12 00:12:44 · 806 阅读 · 0 评论 -
Spring如何读取.properties配置文件
一、注解方案 示例: 导入如下db.properties 在托管类加入注解@PropertySource(value = {"classpath:db.properties"}) ;可以导入多个.properties文件,格式为@PropertySource(value = {"classpath: 文件名1", "classpath:文件名2"}) 在需要传入数据的变量上加入注解: @Value("${username1}")二、xml方案<beans> <impo原创 2022-02-25 19:28:44 · 1473 阅读 · 0 评论 -
Spring中创建Bean的六种方式
创建一个容器类AppConfig加入@Configuration和@ComponentScan。 @ComponentScan默认是扫描AppConfig的本路径和子路径下加入了import org.springframework.context.annotation.Configuration;@Configurationpublic class AppConfig { } 创建一个测试类。输出ApplConfig类中托管的所有方法。后续会多次运行原创 2022-02-27 11:49:10 · 1681 阅读 · 0 评论 -
Spring中的成员对象注入的三种方式
当一个类运行需要调用一个成员对象,成员对象是另一个类对象时,则可以用依赖注入创建成员对象。让容器类来帮你创建成员对象。一、@Value注解二、@Autowired注解三、@Resource注解四、@Inject 和 @Named注解......原创 2022-02-27 21:11:31 · 1685 阅读 · 0 评论