## 阿里云盘
阿里云盘是阿里巴巴集团推出的一款个人云存储服务产品。它为用户提供了一个安全、稳定、高效的云端存储空间,用户可以在其中存储、管理和同步各种类型的文件和数据。
阿里云盘是个人和团队管理数字资产的有力工具,尤其适合需要在多设备间同步工作文件和数据的用户。
## 开放平台
阿里云盘开放个人云存储能力,允许开发者通过对接 API 的方式,集成阿里云盘个人云存储能力到开发者的应用中。
目前开放的能力包括文件上传下载等基础文件管理能力、音视频文件的在线转码与播放等媒体在线播放能力、用户授权与信息查询等能力。
> 阿里云网盘对接文档地址:https://www.yuque.com/aliyundrive/zpfszx/gogo34oi2gy98w5d
![](https://img.kancloud.cn/37/1d/371d4d1512860717bdcf952da88e42fa_1920x1035.png)
## 接入流程
> 服务端 API 调用流程如下图所示
![](https://img.kancloud.cn/23/1a/231aec2d4666110e1567861d26d5e2fc_821x96.png)
### 创建应用
![](https://img.kancloud.cn/71/d6/71d634e66a476637d2b87cce506e0a7b_735x546.png)
![](https://img.kancloud.cn/f7/c6/f7c6d7b3538752b4e2b016432e7476cc_1275x606.png)
> 创建应用以获取应用接入凭证,包括 `appid`、`secret`
### 编写应用
核心调用类
```
<?php
/**
* @desc ADrive https://www.yuque.com/aliyundrive/zpfszx
* @author Tinywan(ShaoBo Wan)
* @date 2024/8/7 22:57
*/
declare(strict_types=1);
namespace app\common\service;
use Psr\SimpleCache\InvalidArgumentException;
use support\exception\BusinessException;
use support\Log;
use think\facade\Cache;
class ADrive
{
const ACCESS_TOKEN = 'ADRIVE_ACCESS_TOKEN:';
/** @var array */
private array $config = [];
/** @var string */
private string $http = 'https://openapi.aliyundrive.com/';
/** @var string */
private string $redirect_uri = 'http://webman2024.tinywan.com:8484/test/adrive-callback';
/** @var array */
private array $url = [
'access_token' => 'oauth/access_token',
'authorize' => 'oauth/authorize',
'drive' => 'adrive/v1.0/user/getDriveInfo',
'create' => 'adrive/v1.0/openFile/create',
'complete' => 'adrive/v1.0/openFile/complete',
'fileList' => 'adrive/v1.0/openFile/list',
'deleteFile' => 'adrive/v1.0/openFile/recyclebin/trash',
'searchList' => 'adrive/v1.0/openFile/search',
'updateFile' => 'adrive/v1.0/openFile/update',
'starredList' => 'adrive/v1.0/openFile/starredList',
'getDownloadUrl' => 'adrive/v1.0/openFile/getDownloadUrl'
];
/**
* @var PublicHttp|null
*/
private ?PublicHttp $publicHttp = null;
/**
* @param int $agencyId
*/
public function __construct(int $agencyId = 0)
{
$agencyInfo['id'] = 2024;
$agencyInfo['aly_appid'] = '282392bf68014e13b5db2a2b35d9b3ce';
$agencyInfo['aly_secret'] = 'a524d58d17a44c1faaa914db460be16a';
if ($this->publicHttp == null) {
$this->publicHttp = new PublicHttp();
}
$this->config = $agencyInfo;
}
/**
* @desc 登录授权
* @author Tinywan(ShaoBo Wan)
*/
public function authorize(): string
{
return $this->http . $this->url['authorize'] . '?client_id=' . $this->config['aly_appid'] .
'&redirect_uri=' . $this->redirect_uri . '&scope=user:base,file:all:read,file:all:write&response_type=code&state=' . $this->config['id'];
}
/**
* @desc getToken
* @param int $type
* @param string $code
* @return bool|mixed|string
* @throws InvalidArgumentException
* @author Tinywan(ShaoBo Wan)
*/
public function getToken(string $code, int $type = 1)
{
$info = [
'client_id' => $this->config['aly_appid'],
'client_secret' => $this->config['aly_secret'],
'grant_type' => $type == 1 ? 'authorization_code' : 'refresh_token',
];
if ($type == 1) {
$info['code'] = $code;
} else {
if (empty($this->config['id'])) {
throw new \Exception('未传入旅行社标识');
}
$token = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($token)) {
throw new \Exception('未有阿里云盘缓存');
}
$value = $token['refresh_token'];
$info['refresh_token'] = $value;
}
$result = $this->publicHttp->postAlyFile($this->http . $this->url['access_token'], $info);
Log::info('[阿里云云盘获取令牌]' . json_encode($result, JSON_UNESCAPED_UNICODE));
if (!is_array($result)) {
$result = json_decode($result, true);
}
Cache::set(self::ACCESS_TOKEN . $this->config['id'], $result, 7200);
return $result;
}
/**
* @desc 获取阿里云盘用户drive_id
* @throws \Exception
* @author Tinywan(ShaoBo Wan)
*/
public function getUserDrive(): array
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$result = $this->publicHttp->postAlyFile($this->http . $this->url['drive'], [], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
if (empty($result['default_drive_id'])) {
throw new \Exception('获取阿里云盘drive_id失败');
}
Cache::set('aly_drive_' . $this->config['id'], $result['default_drive_id']);
Cache::set('aly_userInfo_' . $this->config['id'], $result);
return ['status' => 0, 'msg' => '获取用户drive成功', 'data' => $result['default_drive_id']];
}
/**
* 阿里云盘文件上传
* file_name 文件名称
* file_path 文件路径
* file_id 上传的目录
*/
public function updateFile(array $input): array
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$fileName = $input['file_name'] . date('Y-m-d-H:i:s');
$result = $this->publicHttp->postAlyFile($this->http . $this->url['create'], [
'drive_id' => $drive,
'parent_file_id' => empty($input['file_id']) ? 'root' : $input['file_id'],
'type' => 'file',
'check_name_mode' => 'ignore',
'name' => $fileName,
], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
if (empty($result['part_info_list'][0]['upload_url'])) {
throw new \Exception('获取上传路径失败');
}
$sourceFile = fopen($input['file_path'], "rb");
$res = $this->publicHttp->putAlyFile($result['part_info_list'][0]['upload_url'],
$sourceFile,
['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if ($res['code'] != 1) {
throw new \Exception('上传文件失败');
}
//上传成功后调用上传完毕
$onMsg = $this->publicHttp->postAlyFile($this->http . $this->url['complete'], [
'drive_id' => $drive,
'file_id' => $result['file_id'],
'upload_id' => $result['upload_id'],
], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($onMsg)) {
$onMsg = json_decode($onMsg, true);
}
if (empty($onMsg['name'])) {
throw new \Exception('同步阿里云网盘失败');
}
return ['status' => 0, 'msg' => '上传文件成功', 'file_id' => $result['file_id']];
}
/**
* 新建文件夹
* file_name 文件夹名称
* file_type =1 不追加日期 =2追加日期
**/
public function addFile($input)
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$list = [
'drive_id' => $drive,
'parent_file_id' => empty($input['file_id']) ? 'root' : $input['file_id'],
'type' => 'folder',
'check_name_mode' => 'ignore',
'name' => ($input['file_type'] == 1 ? '' : $input['file_name'] . '-时间:' . date('Y-m-d H:i:s'))
];
$result = $this->publicHttp->postAlyFile($this->http . $this->url['create'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
if (empty($result['file_id'])) {
return ['status' => 1, 'msg' => '新建文件失败'];
}
return ['status' => 0, 'msg' => '操作成功', 'file_id' => $result['file_id']];
}
/**
* 获取文件夹列表
* limit 最大数量 50-100
* marker 分页标记
* parent_file_id root 等于根目录 否则传入文件列表ID
* order_by 排序字段 updated_at created_at name size
* order_direction DESC ASC
*
*/
public function fileList($input)
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$list = [
'drive_id' => $drive,
'order_by' => empty($input['order_by']) ? 'updated_at' : $input['order_by'],
'order_direction' => empty($input['order_direction']) ? 'DESC' : $input['order_direction'],
'parent_file_id' => empty($input['parent_file_id']) ? 'root' : $input['parent_file_id'],
'type' => 'all',
'limit' => (int)$input['limit'],
'fields' => '*'
];
if (!empty($input['marker'])) {
$list['marker'] = $input['marker'];
}
$result = $this->publicHttp->postAlyFile($this->http . $this->url['fileList'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
foreach ($result['items'] as &$value) {
$value['created_at'] = date('Y-m-d H:i:s', strtotime($value['created_at']));
$value['updated_at'] = date('Y-m-d H:i:s', strtotime($value['updated_at']));
$value['show_ico'] = false;
if ($value['type'] == 'folder') {
$value['type_name'] = '文件夹';
} else {
$value['type_name'] = '文件';
}
}
return ['status' => 0, 'rows' => $result['items'], 'next_marker' => $result['next_marker']];
}
/**
* @desc 文件名称
* keyword 文件名称
* limit 条数
* @param array $input
* @return array
* @throws \Exception
* @author Tinywan(ShaoBo Wan)
*/
public function searchList(array $input)
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$list = [
'drive_id' => $drive,
'limit' => (int)$input['limit'],
'fields' => '*',
'query' => 'name match "' . $input['keyword'] . '"'
];
if (!empty($input['marker'])) {
$list['marker'] = $input['marker'];
}
$result = $this->publicHttp->postAlyFile($this->http . $this->url['searchList'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
foreach ($result['items'] as &$value) {
$value['created_at'] = date('Y-m-d H:i:s', strtotime($value['created_at']));
$value['updated_at'] = date('Y-m-d H:i:s', strtotime($value['updated_at']));
$value['show_ico'] = false;
if ($value['type'] == 'folder') {
$value['type_name'] = '文件夹';
} else {
$value['type_name'] = '文件';
}
}
return ['status' => 0, 'rows' => $result['items'], 'next_marker' => $result['next_marker']];
}
/**
* @desc 获取收藏列表
* @param $input
* @return array
* @throws BusinessException|InvalidArgumentException
* @author Tinywan(ShaoBo Wan)
*/
public function starredList($input): array
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new BusinessException('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$list = [
'drive_id' => $drive,
'order_by' => empty($input['order_by']) ? 'updated_at' : $input['order_by'],
'order_direction' => empty($input['order_direction']) ? 'DESC' : $input['order_direction'],
'limit' => (int)$input['limit'],
];
if (!empty($input['marker'])) {
$list['marker'] = $input['marker'];
}
$result = $this->publicHttp->postAlyFile($this->http . $this->url['starredList'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
foreach ($result['items'] as &$value) {
$value['created_at'] = date('Y-m-d H:i:s', strtotime($value['created_at']));
$value['updated_at'] = date('Y-m-d H:i:s', strtotime($value['updated_at']));
$value['show_ico'] = false;
if ($value['type'] == 'folder') {
$value['type_name'] = '文件夹';
} else {
$value['type_name'] = '文件';
}
}
return ['status' => 0, 'rows' => $result['items'], 'next_marker' => $result['next_marker']];
}
/**
* @desc 文件重命名或收藏
* @param $input
* @return array
* @throws \Exception|InvalidArgumentException
* @author Tinywan(ShaoBo Wan)
*/
public function fileRename($input)
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$list = [
'drive_id' => $drive,
'file_id' => $input['file_id'],
'name' => $input['name'],
'starred' => $input['starred']
];
$result = $this->publicHttp->postAlyFile($this->http . $this->url['updateFile'], $list, ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
if (empty($result['file_id'])) {
return ['status' => 1, 'msg' => '操作失败'];
}
return ['status' => 0, 'msg' => '操作成功'];
}
/**
* @desc 放入回收站
* @param array $input
* @return array
* @throws \Exception
* @author Tinywan(ShaoBo Wan)
*/
public function deleteFile(array $input): array
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$this->publicHttp->postAlyFile($this->http . $this->url['deleteFile'], [
'drive_id' => $drive,
'file_id' => $input['file_id']
], ['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
return ['status' => 0, 'msg' => '放入成功'];
}
/**
* @desc 获取下载链接
* @param array $input
* @return array
* @throws \Exception
* @throws InvalidArgumentException
* @author Tinywan(ShaoBo Wan)
*/
public function getDownloadUrl(array $input): array
{
$userToken = Cache::get(self::ACCESS_TOKEN . $this->config['id']);
if (empty($userToken)) {
throw new \Exception('登录失效,请重新授权阿里网盘');
}
$drive = Cache::get('aly_drive_' . $this->config['id']);
if (empty($drive)) {
try {
$driveInfo = $this->getUserDrive();
$drive = $driveInfo['data'];
} catch (\Throwable $exception) {
return ['status' => 1, 'msg' => $exception->getMessage()];
}
}
$list = [
'drive_id' => $drive,
'file_id' => $input['file_id'],
];
$result = $this->publicHttp->postAlyFile($this->http . $this->url['getDownloadUrl'],
$list,
['Authorization:' . $userToken['token_type'] . ' ' . $userToken['access_token']]);
if (!is_array($result)) {
$result = json_decode($result, true);
}
if (empty($result['url'])) {
return ['status' => 1, 'msg' => '获取下载链接失败'];
}
return ['status' => 0, 'msg' => '操作成功', 'url' => $result['url']];
}
}
```
简单请求类
```
<?php
/**
* @desc PublicHttp.php 描述信息
* @author Tinywan(ShaoBo Wan)
* @date 2024/8/7 23:05
*/
declare(strict_types=1);
namespace app\common\service;
class PublicHttp
{
/**
* @desc postAlyFile
* @param string $_url
* @param array $params
* @param array $header
* @return bool|string
* @author Tinywan(ShaoBo Wan)
*/
public function postAlyFile(string $_url, array $params,array $header=[])
{
$headerArray = array("Content-Type:application/json;charset=utf-8", "Accept:application/json");
if (!empty($header)) {
$headerArray = array_merge($headerArray, $header);
}
$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
curl_setopt($ch, CURLOPT_URL, $_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 5.01; Windows NT 5.0)');
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($params));
curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArray);
$output = curl_exec($ch);
curl_close($ch);
return $output;
}
/**
* @desc put请求
* @param string $url
* @param $sourceFile
* @param array $headerArr
* @param int $timeout
* @return array
* @author Tinywan(ShaoBo Wan)
*/
function putAlyFile(string $url, $sourceFile, array $headerArr = [], int $timeout = 30): array
{
$ch = curl_init(); //初始化curl
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //返回字符串,而不直接输出
curl_setopt($ch, CURLOPT_URL, $url); //设置put到的url
curl_setopt($ch, CURLOPT_HTTPHEADER, $headerArr);
curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
curl_setopt($ch, CURLOPT_HEADER, 1); // 启用时会将头文件的信息作为数据流输出。
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); //设置请求方式
curl_setopt($ch, CURLOPT_PUT, true); //设置为PUT请求
curl_setopt($ch, CURLOPT_INFILE, $sourceFile); //设置资源句柄
$response = curl_exec($ch);
if ($error = curl_error($ch)){
$bkArr = array(
'code' => 0,
'msg' => $error,
);
}
else{
$bkArr = array(
'code' => 1,
'msg' => 'ok',
'data' => $response
);
}
curl_close($ch); // 关闭 cURL 释放资源
return $bkArr;
}
}
```
### 调用编写
获取授权码
```php
/**
* @desc: 获取授权码
* @param Request $request
* @return Response
* @author Tinywan(ShaoBo Wan)
*/
public function authorize(Request $request): Response
{
$aDriver = new ADrive();
return redirect($aDriver->authorize());
}
```
回调配置参考
```
/**
* @param Request $request
* @return Response
* @throws InvalidArgumentException
* @author Tinywan(ShaoBo Wan)
*/
public function aDriveCallback(Request $request): Response
{
Log::info('[请求回调参数]:'.json_encode($request->get()));
$code = $request->get()['code'];
$aDriver = new ADrive();
$token = $aDriver->getToken($code);
Log::info('[获取访问凭证 (access_token)]:'.json_encode($token));
return response_json(200, '请求成功',['token'=>$token]);
}
```
> 以上回调地址必须可以通过公网访问的到。我这里配置的回调地址是`http://webman2024.tinywan.com:8484/test/adrive-callback`
令牌响应格式为:
```json
{
"token_type": "Bearer",
"access_token": "eyJraWQiOiJxxxxxxxxxxxx",
"refresh_token": "eyJ0eXAxxxxxxxxxxxxxxmt7WOaMbEXVWNKJdw",
"expires_in": 7200
}
```
> 阿里云盘开放平台使用 OAuth 2.0 授权标准,接入前请阅读。https://www.yuque.com/aliyundrive/zpfszx/rgg2p1qnsfdux61r?singleDoc#
### 授权应用
> 获取授权页面链接:http://webman2024.tinywan.com:8484/test/authorize
![](https://img.kancloud.cn/2c/20/2c20df206f059c1d44a7c8aadb2ebbec_408x829.png)
浏览器打开链接后使用阿里云网盘扫码授权成功后,回调获取用户信息就可以直接调用用户的阿里云网盘功能.
## 上传文件
```
/**
* @desc 文件上传
* @param Request $request
* @return Response
* @throws \Exception
* @author Tinywan(ShaoBo Wan)
*/
public function uploadFile(Request $request): Response
{
$aDriver = new ADrive();
$param = [
'file_name' => '开源技术小栈-文件上传测试',
'file_path' => runtime_path().DIRECTORY_SEPARATOR.'swoole.jpg',
];
$res = $aDriver->updateFile($param);
Log::info('[文件上传-响应结果] '.json_encode($res));
return response_json(200, '请求成功',$res);
}
```
响应结果
```json
{
"code": 200,
"msg": "请求成功",
"data": {
"status": 0,
"msg": "上传文件成功",
"file_id": "66b5b06c8e278ff7d300479fac0fb623fdfe299a"
}
}
```
> 云盘上传结果
![](https://img.kancloud.cn/04/bc/04bcff830956c4689af65daebc63b05d_1278x576.png)
- 设计模式系列
- 工厂方法模式
- 序言
- Windows程序注册为服务的工具WinSW
- 基础
- 安装
- 开发规范
- 目录结构
- 配置
- 快速入门
- 架构
- 请求流程
- 架构总览
- URL访问
- 容器和依赖注入
- 中间件
- 事件
- 代码层结构
- 四个层次
- 路由
- 控制器
- 请求
- 响应
- 数据库
- MySQL实时同步数据到ES解决方案
- 阿里云DTS数据MySQL同步至Elasticsearch实战
- PHP中的MySQL连接池
- PHP异步非阻塞MySQL客户端连接池
- 模型
- 视图
- 注解
- @SpringBootApplication(exclude={DataSourceAutoConfiguration.calss})
- @EnableFeignClients(basePackages = "com.wotu.feign")
- @EnableAspectJAutoProxy
- @EnableDiscoveryClient
- 错误和日志
- 异常处理
- 日志处理
- 调试
- 验证
- 验证器
- 验证规则
- 扩展库
- 附录
- Spring框架知识体系详解
- Maven
- Maven和Composer
- 构建Maven项目
- 实操课程
- 01.初识SpringBoot
- 第1章 Java Web发展史与学习Java的方法
- 第2章 环境与常见问题踩坑
- 第3章 springboot的路由与控制器
- 02.Java编程思想深度理论知识
- 第1章 Java编程思想总体
- 第2章 英雄联盟的小案例理解Java中最为抽象的概念
- 第3章 彻底理解IOC、DI与DIP
- 03.Spring与SpringBoot理论篇
- 第1章 Spring与SpringBoot导学
- 第2章 Spring IOC的核心机制:实例化与注入
- 第3章 SpringBoot基本配置原理
- 04.SprinBoot的条件注解与配置
- 第1章 conditonal 条件注解
- 第2章 SpringBoot自动装配解析
- 05.Java异常深度剖析
- 第1章 Java异常分类剖析与自定义异常
- 第2章 自动配置Url前缀
- 06.参数校验机制与LomBok工具集的使用
- 第1章 LomBok工具集的使用
- 第2章 参数校验机制以及自定义校验
- 07.项目分层设计与JPA技术
- 第1章 项目分层原则与层与层的松耦合原则
- 第2章 数据库设计、实体关系与查询方案探讨
- 第3章 JPA的关联关系与规则查询
- 08.ORM的概念与思维
- 第1章 ORM的概念与思维
- 第2章 Banner等相关业务
- 第3章 再谈数据库设计技巧与VO层对象的技巧
- 09.JPA的多种查询规则
- 第1章 DozerBeanMapper的使用
- 第2章 详解SKU的规格设计
- 第3章 通用泛型Converter
- 10.令牌与权限
- 第1章 通用泛型类与java泛型的思考
- 常见问题
- 微服务
- demo
- PHP中Self、Static和parent的区别
- Swoole-Cli
- 为什么要使用现代化PHP框架?
- 公众号
- 一键部署微信公众号Markdown编辑器(支持适配和主题设计)
- Autodesigner 2.0发布
- Luya 一个现代化PHP开发框架
- PHPZip - 创建、读取和管理 ZIP 文件的简单库
- 吊打Golang的PHP界天花板webman压测对比
- 简洁而强大的 YAML 解析库
- 推荐一个革命性的PHP测试框架:Kahlan
- ServBay下一代Web开发环境
- 基于Websocket和Canvas实现多人协作实时共享白板
- Apipost预执行脚本如何调用外部PHP语言
- 认证和授权的安全令牌 Bearer Token
- Laradock PHP 的 Docker 完整本地开发环境
- 高效接口防抖策略,确保数据安全,避免重复提交的终极解决方案!
- TIOBE 6月榜单:PHP稳步前行,编程语言生态的微妙变化
- Aho-Corasick字符串匹配算法的实现
- Redis键空间通知 Keyspace Notification 事件订阅
- ServBay如何启用并运行Webman项目
- 使用mpdf实现导出pdf文件功能
- Medoo 轻量级PHP数据库框架
- 在PHP中编写和运行单元测试
- 9 PHP运行时基准性能测试
- QR码生成器在PHP中的源代码
- 使用Gogs极易搭建的自助Git服务
- Gitea
- webman如何记录SQL到日志?
- Sentry PHP: 实时监测并处理PHP应用程序中的错误
- Swoole v6 Alpha 版本已发布
- Proxypin
- Rust实现的Redis内存数据库发布
- PHP 8.4.0 Alpha 1 测试版本发布
- 121
- Golang + Vue 开发的开源轻量 Linux 服务器运维管理面板
- 内网穿透 FRP VS Tailscale
- 新一代开源代码托管平台Gitea
- 微服务系列
- Nacos云原生配置中心介绍与使用
- 轻量级的开源高性能事件库libevent
- 国密算法
- 国密算法(商用密码)
- GmSSL 支持国密SM2/SM3/SM4/SM9/SSL 密码工具箱
- GmSSL PHP 使用
- 数据库
- SQLite数据库的Web管理工具
- 阿里巴巴MySQL数据库强制规范
- PHP
- PHP安全测试秘密武器 PHPGGC
- 使用declare(strict_types=1)来获得更健壮的PHP代码
- PHP中的魔术常量
- OSS 直传阿里腾讯示例
- PHP源码编译安装APCu扩展实现数据缓存
- BI性能DuckDB数据管理系统
- 为什么别人可以是架构师!而我却不是?
- 密码还在用 MD5 加盐?不如试试 password_hash
- Elasticsearch 在电商领域的应用与实践
- Cron 定时任务入门
- 如何动态设置定时任务!而不是写死在Linux Crontab
- Elasticsearch的四种查询方式,你知道多少?
- Meilisearch vs Elasticsearch
- OpenSearch vs Elasticsearch
- Emlog 轻量级开源博客及建站系统
- 现代化PHP原生协程引擎 PRipple
- 使用Zephir编写C扩展将PHP源代码编译加密
- 如何将PHP源代码编译加密,同时保证代码能正常的运行
- 为什么选择Zephir给PHP编写动态扩展库?
- 使用 PHP + XlsWriter实现百万级数据导入导出
- Rust编写PHP扩展
- 阿里云盘开放平台对接进行文件同步
- 如何构建自己的PHP静态可执行文件
- IM后端架构
- RESTful设计方法和规范
- PHP编译器BPC 7.3 发布,成功编译ThinkPHP8
- 高性能的配置管理扩展 Yaconf
- PHP实现雪花算法库 Snowflake
- PHP官方现代化核心加密库Sodium
- pie
- 现代化、精简、非阻塞PHP标准库PSL
- PHP泛型和集合
- 手把手教你正确使用 Composer包管理
- JWT双令牌认证实现无感Token自动续期
- 最先进PHP大模型深度学习库TransformersPHP
- PHP如何启用 FFI 扩展
- PHP超集语言PXP
- 低延迟双向实时事件通信 Socket.IO
- PHP OOP中的继承和多态
- 强大的现代PHP高级调试工具Kint
- PHP基金会
- 基于webman+vue3高质量中后台框架SaiAdmin
- 开源免费的定时任务管理系统:Gocron
- 简单强大OCR工具EasyOCR在PHP中使用
- PHP代码抽象语法树工具PHP AST Viewer
- MySQL数据库管理工具PHPMyAdmin
- Rust编写的一款高性能多人代码编辑器Zed
- 超高性能PHP框架Workerman v5.0.0-beta.8 发布
- 高并发系列
- 入门介绍及安装
- Lua脚本开发 Hello World
- 执行流程与阶段详解
- Nginx Lua API 接口开发
- Lua模块开发
- OpenResty 高性能的正式原因
- 记一次查找 lua-resty-mysql 库 insert_id 的 bug
- 包管理工具OPM和LuaRocks使用
- 异步非阻塞HTTP客户端库 lua-resty-http
- Nginx 内置绑定变量
- Redis协程网络库 lua-resty-redis
- 动态HTML渲染库 lua-testy-template
- 单独的
- StackBlitz在线开发环境
- AI
- 基础概念
- 12312
- 基础镜像的坑
- 利用phpy实现 PHP 编写 Vision Transformer (ViT) 模型
- 语义化版本 2.0.0