码迷,mamicode.com
首页 >  
搜索关键字:starter gpo    ( 10479个结果
springboot常用功能
1、常用注解 2、邮件功能 //依赖引入 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> //邮件配置:a ...
分类:编程语言   时间:2020-07-05 21:35:19    阅读次数:78
webSocket的基本使用
1.引入依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> 2.在前端页面编写WebSocke ...
分类:Web程序   时间:2020-07-05 17:06:59    阅读次数:92
.NET Core 中使用GBK GB2312编码报错的问题
错误描述 环境 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
springboot(7) rabbitmq
一.消息发送端 pom.xml <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-amqp</artifactId> </dependency> application.y ...
分类:编程语言   时间:2020-07-03 21:42:43    阅读次数:76
springboot(8) 发送邮件
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开发进阶
springboot的Web开发 web开发我们需要导入的两个依赖有: thymeleaf 和 Spring Web <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-th ...
分类:编程语言   时间:2020-07-03 19:07:25    阅读次数:55
SpringBoot单元测试demo
引入maven <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> 单 ...
分类:编程语言   时间:2020-07-03 12:37:32    阅读次数:101
移动端自动化测试-PO设计模式
工具: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
SpringBoot开发案例之整合Kafka实现消息队列
本文代码使用的是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-命令行-删除本地和远程分支
查看项目的分支们(包括本地和远程) 命令行 : git branch -a 删除本地分支命令行 : git branch -D 分支名 删除远程分支命令行 : git push origin --delete 分支名 ...
分类:其他好文   时间:2020-06-29 15:19:20    阅读次数:156
10479条   上一页 1 ... 21 22 23 24 25 ... 1048 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!