最新发布第2页
小鹿快传 - 在线P2P文件传输工具-TOY论坛

小鹿快传 – 在线P2P文件传输工具

简介 小鹿快传是一款Web端的P2P文件传输工具,使用了WebRTC技术实现P2P连接和文件传输。 项目地址 https://github.com/fanchangyong/deershare 产品截图 使用说明 获取项目 git clone https://g...
node定时发送html格式邮件,带模板引擎编辑动态编辑html-TOY论坛

node定时发送html格式邮件,带模板引擎编辑动态编辑html

//引用模块 const nodemailer =require('nodemailer') const schedule =require('node-schedule') const path =require('path') const template=require('art-template') //模板路径 const view...
SSM配置MyBatis步骤-TOY论坛

SSM配置MyBatis步骤

1.添加所需maven依赖 maven仓库:https://mvnrepository.com/ <!--Mybatis--> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>...
Microsoft 365 E5 自动订阅程序-TOY论坛

Microsoft 365 E5 自动订阅程序

项目地址 https://github.com/luoye663/e5 使用教程 https://qyi.io/archives/687.html 更新记录 2021-08-19 取消清清redis将调用调用替换,减轻mysql压力 2021-07-28 去除rabbitMQ依赖,使用线...
Spring boot整合mybatis步骤-TOY论坛

Spring boot整合mybatis步骤

添加数据库以及mybatis maven依赖 jdbc:mybatis包含了spring-boot-starter-jdbc可以不用添加 <!-- mybatis --> <dependency> <groupId>org.mybatis.spring.boot</groupId> <art...
Spring Boot项目全局异常处理方式-TOY论坛

Spring Boot项目全局异常处理方式

SpringBoot中,@ControllerAdvice 即可开启全局异常处理,使用该注解表示开启了全局异常的捕获,我们只需在自定义一个方法使用@ExceptionHandler注解然后定义捕获异常的类型即可对这些捕获的异...
@RequestParam,@PathParam,@PathVariable等注解区别-TOY论坛

@RequestParam,@PathParam,@PathVariable等注解区别

@RequestParam 和 @PathVariable 注解是用于从request中接收请求的,两个都可以接收参数,关键点不同的是@RequestParam 是从request里面拿取值,而 @PathVariable 是从一个URI模板里面来...
如何给IPv4免费申请一年的SSL证书-TOY论坛

如何给IPv4免费申请一年的SSL证书

SSL网址 点击前往 申请步骤 1.访问上方网址,使用邮箱进行注册完成后登录,点击New Certificate 2.填写IP进行下一步 3.这里选择90天进行下一步 4.选择自动生成csr,然后下一步 5.默认免费套餐下...
IDEA 方法设置快速注释【便捷】-TOY论坛

IDEA 方法设置快速注释【便捷】

一、方法注释 1.File—>Settings 进入设置界面 File—>Settings 2.找到Editor—>Live Templates Editor—>Live Templates 3.新增一个模板 点击右侧的 +号,选择Template Group.. Ne...