1、常用注解 2、邮件功能 //依赖引入 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> //邮件配置:a ...
分类:
编程语言 时间:
2020-07-05 21:35:19
阅读次数:
78
1.引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 2.在前端页面编写WebSocke ...
分类:
Web程序 时间:
2020-07-05 17:06:59
阅读次数:
92
错误描述 环境 dotnet core 2.1 2.2 dotnet core 3.1 dotnet core 5.0 现象 当代码中使用 System.Text.Encoding.GetEncoding("GB2312") //或者 System.Text.Encoding.GetEncoding ...
分类:
Web程序 时间:
2020-07-05 13:37:28
阅读次数:
182
一.消息发送端 pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> application.y ...
分类:
编程语言 时间:
2020-07-03 21:42:43
阅读次数:
76
1、pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> <dependency> <group ...
分类:
编程语言 时间:
2020-07-03 21:01:25
阅读次数:
57
springboot的Web开发 web开发我们需要导入的两个依赖有: thymeleaf 和 Spring Web <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-th ...
分类:
编程语言 时间:
2020-07-03 19:07:25
阅读次数:
55
引入maven <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 单 ...
分类:
编程语言 时间:
2020-07-03 12:37:32
阅读次数:
101
工具:pycharm + Appium + Genymotion 开发环境:python 3.6.5 + selenium 2.48.0 + pytest框架 + Android 5.1 测试机型:Samsung Galaxy S6 #需求:设计3个测试用例 #1.实现点击设置->显示->放大镜(查 ...
分类:
移动开发 时间:
2020-07-01 00:08:01
阅读次数:
81
本文代码使用的是Spring Boot 2.1.1.RELEASE 版本 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version ...
分类:
编程语言 时间:
2020-06-30 13:00:18
阅读次数:
51
查看项目的分支们(包括本地和远程) 命令行 : git branch -a 删除本地分支命令行 : git branch -D 分支名 删除远程分支命令行 : git push origin --delete 分支名 ...
分类:
其他好文 时间:
2020-06-29 15:19:20
阅读次数:
156