上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 什么是 Bash简介Bash(GNU Bourne-Again Shell)是一个为 GNU 计划编写的 Unix shell,它是许多 Linux 平台默认使用的 shell。 shell 是一个命令解释器,是介于操作系统内核与用户之间的一个绝缘层。准确地说,它也是能力很强的计算机语言,被称为解释 阅读全文
posted @ 2022-11-19 09:58 liftsail 阅读(3674) 评论(0) 推荐(0) 编辑
摘要: demo01 import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException; public class Test { private final static int BU 阅读全文
posted @ 2022-11-18 17:56 liftsail 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 1. @Autowired的默认装配 我们都知道在spring中@Autowired注解,是用来自动装配对象的。通常,我们在项目中是这样用的: package com.sue.cache.service; import org.springframework.stereotype.Service; 阅读全文
posted @ 2022-11-18 17:49 liftsail 阅读(75) 评论(0) 推荐(0) 编辑
摘要: Windows1、指定端口 java -jar springboot.jar --server.port=81812、指定配置文件 java -jar springboot.jar --spring.profiles.active=dev3、同时指定端口与配置文件 java -jar springb 阅读全文
posted @ 2022-11-18 13:25 liftsail 阅读(5777) 评论(0) 推荐(0) 编辑
摘要: 目录 IDEA 配置 SVN 拉取代码 IDEA + SVN 将文件回退到历史版本 IDEA 更新 SVN 代码解决冲突 IDEA + SVN 与资源库同步 IDEA 为 SVN 打分支或标签 IDEA 忽略提交文件到 SVN 与 取消纳入版本控制 IDEA 配置 SVN 拉取代码1、电脑上先安装 阅读全文
posted @ 2022-11-18 11:50 liftsail 阅读(6159) 评论(0) 推荐(1) 编辑
摘要: 本文介绍如何在SpringBoot中配置Redisson 官网网址 redisson-spring-boot-starter配置方案:redisson/redisson-spring-boot-starter at master · redisson/redisson · GitHub spring 阅读全文
posted @ 2022-11-18 11:37 liftsail 阅读(2812) 评论(0) 推荐(0) 编辑
摘要: <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <outputDirect 阅读全文
posted @ 2022-11-05 11:31 liftsail 阅读(478) 评论(0) 推荐(0) 编辑
摘要: 1.Filterpackage com.jinruaneducate.module.filter;import org.apache.commons.codec.binary.Base64;import org.slf4j.Logger;import org.slf4j.LoggerFactory; 阅读全文
posted @ 2022-11-01 13:18 liftsail 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 1.入口 2.feign调用 3.应用实现 阅读全文
posted @ 2022-10-19 17:36 liftsail 阅读(9) 评论(0) 推荐(0) 编辑
摘要: /** * 毫秒转换为时间字符串 * @param milliseconds * @return */ public static String timeStampToDhms(long milliseconds) { long day = TimeUnit.MILLISECONDS.toDays( 阅读全文
posted @ 2022-10-11 17:36 liftsail 阅读(60) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页