posted @ 2023-09-26 16:46 valeb 阅读(42) 评论(0) 推荐(0)
摘要:
#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images 阅读全文
摘要:
#!/bin/bash echo " Welcome to docker build" echo "" echo "" ABP_HOST="abp/host" ABP_NG="abp/ng" cd .. echo " Building docker image $ABP_HOST..." # cd 阅读全文
posted @ 2023-09-22 14:49 valeb 阅读(33) 评论(0) 推荐(0)
摘要:
<#@ assembly name="System.Core"#> <#@ import namespace="System.Collections.Generic"#> <#@ import namespace="System.IO"#> <#@ import namespace="System. 阅读全文
posted @ 2023-09-21 09:46 valeb 阅读(4) 评论(0) 推荐(0)
摘要:
错误排查: 都会用 2那里 搜索 ,答案又是满天飞,且抄手一大帮! 正确实的方式: tail -200f /var/log/messages 查看日志 ,具体定位! 阅读全文
posted @ 2023-09-20 18:32 valeb 阅读(855) 评论(0) 推荐(0)
摘要:
查阅网络相关文章,抄的是满天飞。。。。, 没有一个可完整的。 破解工具:https://files.cnblogs.com/files/valeb/confluence%E5%B7%A5%E5%85%B7.rar?t=1695031724&download=true 下载地址: https://ww 阅读全文
posted @ 2023-09-18 18:48 valeb 阅读(1486) 评论(2) 推荐(0)
摘要:
错误原因分析:cannot load certificate "/etc/nginx/test.com.crt": BIO_new_file() failed (SSL: error:02001002:system library:fopen:No such file or directory:fo 阅读全文
posted @ 2023-09-11 11:56 valeb 阅读(2059) 评论(0) 推荐(0)
摘要:
<template> <div> <Card dis-hover> <div class="page-body"> <Form ref="queryForm" :label-width="90" label-position="left" inline> <Row :gutter="16"> <Co 阅读全文
posted @ 2023-08-29 21:05 valeb 阅读(179) 评论(0) 推荐(0)
摘要:
DECLARE @cnt INT = 0; WHILE @cnt < 27 BEGIN SET @cnt = @cnt + 1; PRINT @cnt; with temp (id,[Name],ParentCategriesID)as ( select id,[Name],ParentCategr 阅读全文
posted @ 2023-08-29 19:15 valeb 阅读(13) 评论(0) 推荐(0)
摘要:
SELECT 表名 = case when a.colorder = 1 then d.name else '' end, TableDesc = case when a.colorder = 1 then isnull(f.value, '') else '' end, 字段序号 = a.colo 阅读全文
posted @ 2023-08-14 19:32 valeb 阅读(15) 评论(0) 推荐(0)
摘要:
public class SpringUtils { static IApplicationContext context; public static T GetObject<T>(string name) where T : class { if(context == null) { conte 阅读全文
posted @ 2023-08-14 18:40 valeb 阅读(11) 评论(0) 推荐(0)