会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
陈鹏昱Chen
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
下一页
2020年9月1日
LayUi- 动态表格table中下拉框Select的设置和监听
摘要: LayUi中动态表格中可以使用 templet自定义列模板 对单元格添加其他元素 ,添加下拉框相对麻烦些,没有自带的。 1.添加编辑器 我们使用绑定模版选择器的方法: 在table.render()中 指定列(cols)的templet属性,并添加模板的html代码,例如: { rowspan: 2
阅读全文
posted @ 2020-09-01 12:09 陈鹏昱Chen
阅读(26051)
评论(6)
推荐(1)
2020年7月30日
C# 使用IKVM.NET将Java jar包转换为dll文件
摘要: 项目中遇到了无法正常跨语言加解密的问题,需要将jar文件转换为dll文件供c#调用。 一. 下载IKVM.NET及配置 下载地址:http://www.ikvm.net/download.html 解压后,需要配置环境变量,在"Path"中添加bin目录的路径。 二.转换dll 打开cmd,cd到j
阅读全文
posted @ 2020-07-30 01:08 陈鹏昱Chen
阅读(2113)
评论(1)
推荐(1)
2020年6月6日
.NET Core中内存缓存框架MemoryCache的基本使用
摘要: MemoryCache是.Net Framework4.0中加入的内存缓存类; 在.Net Core的版本中,加入了以下内容: 1.缓存过期的回调 2.缓存容量的控制 3.缓存项优先级设定 4.缓存压缩 准备工作:Nuget安装Microsoft.Extensions.Caching.Memory
阅读全文
posted @ 2020-06-06 00:26 陈鹏昱Chen
阅读(1866)
评论(0)
推荐(0)
2020年6月2日
EF:No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'.
摘要: 错误内容: No Entity Framework provider found for the ADO.NET provider with invariant name 'System.Data.SqlClient'. Make sure the provider is registered in
阅读全文
posted @ 2020-06-02 17:30 陈鹏昱Chen
阅读(600)
评论(0)
推荐(0)
2020年4月4日
C#-使用AutoFac通过配置的方式注入指定对象
摘要: 程序版本是.net framework 4.5的 首先Nuget添加AutoFac, 需要读取配置的话需要再添加Autofac.Configuration Autofac.Configuration的版本需要和AutoFac和.net版本相匹配。 这里我用 .net 4.5\autofac3.3.1
阅读全文
posted @ 2020-04-04 08:14 陈鹏昱Chen
阅读(2838)
评论(0)
推荐(3)
2020年2月27日
Maven 项目 The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
摘要: pom.xml加入: <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> <scope>provided</scope> </depende
阅读全文
posted @ 2020-02-27 09:18 陈鹏昱Chen
阅读(41)
评论(0)
推荐(0)
2020年2月6日
SpringBoot 启动报错Failed to start component [NonLoginAuthenticator[StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]]
摘要: 与servlet-api 冲突, 在pom.xml中去除servlet-api 的依赖
阅读全文
posted @ 2020-02-06 17:17 陈鹏昱Chen
阅读(6220)
评论(0)
推荐(0)
2020年2月1日
vs打包错误:要在“系统必备”对话框中启用“从与我的应用程序相同的位置下载系统必备组件”,必须将“Microsoft .NET Framework 4.7.2 (x86 和 x64)”项的文件
摘要: 错误内容: ERROR: 要在“系统必备”对话框中启用“从与我的应用程序相同的位置下载系统必备组件”,必须将“Microsoft .NET Framework 4.7.2 (x86 和 x64)”项的文件“DotNetFX472\NDP472-KB4054530-x86-x64-AllOS-ENU.
阅读全文
posted @ 2020-02-01 18:34 陈鹏昱Chen
阅读(7049)
评论(0)
推荐(2)
2020年1月27日
@GetMapping、@PostMapping、@RequestMapping
摘要: @GetMapping("/Test")=@RequestMapping(value = "/Test",method=RequestMethod.GET) @PostMapping("/Test")=@RequestMapping(value = "/Test",method=RequestMet
阅读全文
posted @ 2020-01-27 21:58 陈鹏昱Chen
阅读(58)
评论(0)
推荐(0)
2019年12月17日
asp.net 下载文件时文件名乱码问题解决
摘要: 原代码: string fileName = "模板.doc"; string filePath = Server.MapPath("~/Download/ZJXX/模板.doc"); FileInfo fileInfo = new FileInfo(filePath); Response.Clea
阅读全文
posted @ 2019-12-17 12:00 陈鹏昱Chen
阅读(340)
评论(0)
推荐(0)
上一页
1
2
3
4
下一页
公告