上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页
摘要: #1 新建SpringBoot项目 ##1.1 导入pom依赖文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.o 阅读全文
posted @ 2020-09-04 19:21 雨中遐想 阅读(569) 评论(1) 推荐(0) 编辑
摘要: 关于凯撒密码的介绍我就不多说了,感兴趣的可以看什么是凯撒密码?,我主要说的是java如何实现。 我发现网上有写java加密解密的,写的时候发现只需要一个转换函数就可以了,可以作为加密用,也可以用作解密用。 我们要解密的字符串是R uxen hxd. ** * 凯撒密码 */ public class 阅读全文
posted @ 2020-08-31 22:41 雨中遐想 阅读(1119) 评论(0) 推荐(0) 编辑
摘要: #1 通过IDEA脚手架创建一个maven项目 ##1.1 添加运行jsp的maven依赖 <!--添加jsp引擎,SpringBoot内置的Tomcat中没有此依赖--> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifa 阅读全文
posted @ 2020-08-30 11:09 雨中遐想 阅读(591) 评论(0) 推荐(0) 编辑
摘要: 转载地址:https://www.jianshu.com/p/85017f5ecba1 阅读全文
posted @ 2020-08-30 00:07 雨中遐想 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 官网文档:http://maven.apache.org/ref/3.2.5/maven-settings/settings.html 下面是我个人的配置 <?xml version="1.0" encoding="UTF-8"?> <settings xmlns="http://maven.apa 阅读全文
posted @ 2020-08-29 21:34 雨中遐想 阅读(8533) 评论(0) 推荐(1) 编辑
摘要: 转载地址:https://www.jianshu.com/p/d40ee98b84b5 阅读全文
posted @ 2020-08-29 20:16 雨中遐想 阅读(107) 评论(0) 推荐(0) 编辑
摘要: #1 SpringBoot整合Web层技术 ##1.1 SpringBoot整合Servlet 目录结构 ###1.1.1 方式一 通过注解扫描完成Servlet组件的注册 ####1.1.1.1 创建Servlet /** * SpringBoot 整合servlet方式一 */ @WebServ 阅读全文
posted @ 2020-08-29 08:31 雨中遐想 阅读(370) 评论(0) 推荐(0) 编辑
摘要: 主要是练习String类中indexOf的用法 /** * 查找一个字符串在另一个字符串中出现的次数 */ public class MainTest { public static void main(String[] args) { int count = countSubString("hel 阅读全文
posted @ 2020-08-27 11:01 雨中遐想 阅读(3227) 评论(0) 推荐(0) 编辑
摘要: 因为现在面试经常需要问的需要SQL优化,问的具体操作步骤时候的常见做法,所以网上总结这些操作步骤: SQL优化的具体操作: 1、在表中建立索引,优先考虑where、group by使用到的字段。 **2、尽量避免使用select *,返回无用的字段会降低查询效率。**如下: SELECT * FRO 阅读全文
posted @ 2020-08-25 20:16 雨中遐想 阅读(111) 评论(0) 推荐(0) 编辑
摘要: 每次通过服务开启关闭mysql太麻烦,可以通过cmd或批处理来解决 cmd 开启关闭mysql cmd需要使用管理员打开 //开启mysql net start mysql //关闭mysql net stop mysql #批处理 开启关闭mysql 将下面代码复制到文本文件中,以bat为后缀名, 阅读全文
posted @ 2020-08-24 11:39 雨中遐想 阅读(365) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 33 下一页