摘要: ##第一步打开jdk8下载官网 https://www.oracle.com/java/technologies/javase/jdk8-arm-downloads.html 点进去之后点这个,看个人版本 下载之后使用Xftp传输文件到虚拟机 使用 tar -zxvf jdk-8u341-linux 阅读全文
posted @ 2022-07-28 13:44 轻封侯 阅读(1069) 评论(0) 推荐(0) 编辑
摘要: 第一步: 先在pom。xml文件中引入Shiro的依赖 <!--shiro和spring整合--> <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-spring</artifactId> <version>1.3. 阅读全文
posted @ 2022-06-10 00:31 轻封侯 阅读(366) 评论(0) 推荐(0) 编辑
摘要: 1.导入Hibernate-Validator 2.在属性上面声明@Pattern 声明自定义校验 参数 regxp 填写正则表达式字符串 message填写错误信息的字符串 实例 @Pattern(regexp = "(^[a-zA-z0-9_-]{6,16}$)|(^[\\u2E80-\\u9F 阅读全文
posted @ 2022-06-02 23:08 轻封侯 阅读(55) 评论(0) 推荐(0) 编辑
摘要: Git介绍 分布式版本控制工具 VS集中式版本控制工具 Git常用命令 命令 作用 git status 查看本地库状态 git init 初始化本地库 git config --glodal user.name [用户名称] 设置用户名称 git config --glodal user.emai 阅读全文
posted @ 2022-05-30 23:43 轻封侯 阅读(29) 评论(0) 推荐(0) 编辑
摘要: 1、在spring配置文件配置事务管理器 开启tx空间 (2)开启事务注解 <tx:annotation-driven transaction-manager="transactionManager"></tx:annotation-driven> 3、在service类上面(或者service类里 阅读全文
posted @ 2022-05-29 16:03 轻封侯 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 1.Spring框架一般都是基于AspectJ实现AOP操作 (1)什么是AspectJ AspectJ不是Spring组成部分,是独立的AOP框架,一般吧AspectJ和Spring框架一起使用,进行AOP操作 2.基于AspectJ实现AOP操作 (1)基于xml配置文件实现 (2)基于注解方式 阅读全文
posted @ 2022-05-29 15:52 轻封侯 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 使用Springt5需要导包 IOC 配置xml文件 阅读全文
posted @ 2022-05-09 23:22 轻封侯 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 什么是Cookie? 1、Cookie 翻译过来是饼干的意思。 2、Cookie 是服务器通知客户端保存键值对的一种技术。 3、客户端有了Cookie 后,每次请求都发送给服务器。 4、每个Cookie 的大小不能超过4kb 如何创建Cookie 通过转发来到Servlet中 在Servlet里面创 阅读全文
posted @ 2022-05-01 23:03 轻封侯 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1、要有一个form标签,method=post请求 2、form标签的encType属性值必须为multipart/form-data值3、在form标签中使用input type=file添加上传的文件 4、编写服务器代码接收,处理上传的数据。requset.getInputSteam() 使用 阅读全文
posted @ 2022-04-24 00:39 轻封侯 阅读(75) 评论(0) 推荐(0) 编辑
摘要: a)什么是EL表达式,EL表达式的作用? EL表达式的全称是:Expression Language。是表达式语言。 E表达式的什么作用:EL表达式主要是代替jsp页面中的表达式脚本在jsp页面中进行数据的输出。因为EL表达式在输出数据的时候,要比jsp的表达式脚本要简洁很多。 格式${} 如果代码 阅读全文
posted @ 2022-04-22 23:26 轻封侯 阅读(22) 评论(0) 推荐(0) 编辑