相关文章
uni-app之android原生插件开发
一 插件简介
1.1 当HBuilderX中提供的能力无法满足App功能需求,需要通过使用Andorid/iOS原生开发实现时,可使用App离线SDK开发原生插件来扩展原生能力。
1.2 插件类型有两种,Module模式和Component模式 Module模式:能力扩展&…
编程日记
2024/12/18 21:40:56
c++ 学习之 构造函数的使用
上代码
class person
{
public:person(){cout << " person 的无参默认构造函数 " << endl;}person(int age){cout << " person 的有参默认构造函数 " << endl;m_age age;}person(const person& other){cout << "…
编程日记
2024/12/17 16:48:31
springboot整合SpringSecurity
先写了一个配置类
给这个访问路径,加上角色权限
package com.qf.config;import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
impo…
编程日记
2024/12/23 3:16:00
PHP数组处理$arr1转换为$arr2
请编写一段程序将$arr1转换为$arr2
$arr1 array(
0>array (fid>1,tid>1,name>Name1),
1>array (fid>2,tid>2,name>Name2),
2>array (fid>3,tid>5,name>Name3),
3>array (fid>4,tid>7,name>Name4),
4>array (fid>5,tid…
编程日记
2024/12/20 8:55:04
docker安装gitlab
安装gitlab
sudo docker run --detach \--hostname gitlab \--publish 543:443 --publish 90:80 --publish 222:22 \ --name gitlab \--restart always \--volume $GITLAB_HOME/config:/etc/gitlab \--volume $GITLAB_HOME/logs:/var/log/gitlab \--volume $GITLAB_HOME/data:…
编程日记
2024/12/19 6:01:48
ELK安装、部署、调试 (二) ES的安装部署
ElasticSearch是一个基于Lucene的搜索服务器。它提供了一个分布式多用户能力的全文搜索引擎,基于RESTful web接口操作ES,也可以利用Java API。Elasticsearch是用Java开发的,并作为Apache许可条款下的开放源码发布,是当前流行的企业…
编程日记
2024/12/15 17:33:37