- 博客(13)
- 资源 (5)
- 收藏
- 关注
原创 奇怪的JAR运行BUG
经过反复测试 删掉一个名字叫pwdreset.css的文件后这个jar就可以运行。并且本地打包包含这个pwdreset.css文件的jar完全没有任何问题。pwdreset.css改名为pwd.css后再打包的jar也没有问题。gitlab CI job使用下列镜像打包了一个jar。本地maven使用3.9.4,jdk17.0.9。有高手能解释一下吗?
2024-05-21 11:43:45 222 1
原创 Entity Framework Demo
Entity Framework(又称ADO.NET Entity Framework) 是微软以 ADO.NET 为基础所发展出来的物件关联对应(O/R Mapping)解决方案,早期被称为 ObjectSpace,现已经包含在 Visual Studio 2008 Service Pack 1 以及 .NET Framework 3.5 Service Pack 1 中发表。 ADO....
2020-04-23 17:20:45 301
原创 微软企业库(Microsoft Enterprise Library Data Access Block)
1.Dynamic-link library Microsoft.Practices.ObjectBuilder.dll Microsoft.Practices.EnterpriseLibrary.Common.dll Microsoft.Practices.EnterpriseLibrary.Data.dll 使用 NuGet 安装 Microsoft....
2020-04-20 15:49:14 1040
转载 透彻的掌握 Spring 中@transactional 的使用
1. 在 xml 配置中的事务配置信息 <tx:annotation-driven /> <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="d...
2020-04-17 15:52:00 140
转载 AOP
面向切面的程序设计(Aspect-oriented programming,AOP,又译作面向方面的程序设计、剖面导向程序设计)是计算机科学中的一种程序设计思想,旨在将横切关注点与业务主体进行进一步分离,以提高程序代码的模块化程度。通过在现有代码基础上增加额外的通知(Advice)机制,能够对被声明为“切点(Pointcut)”的代码块进行统一管理与装饰,如“对所有方法名以‘set*’开头的方法添...
2020-04-17 15:34:15 125
翻译 Longest Valid Parentheses
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. Example 1: Input: "(()" Output: 2 Explanation: The longest valid...
2020-04-17 11:47:09 98
原创 Next Permutation
Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. If such arrangement is not possible, it must rearrange it as the lowest possible o...
2020-04-16 22:42:37 205
原创 动态规划——不等式
已知数列a={1,2,3,...,n},将k个小于符号('<')和n-k-1个大于符号('>')插入数列中可以使其构成一个合法的不等式(0<=k<=n-1)。例如a={1,2},可以为1<2或2>1;a={1,2,3},可以为1<2<3、1<3>2、2>1<3、2<3>1、3>1<2、3>2>...
2020-04-16 17:06:16 417
原创 最短路径算法
坐标轴上有N点,跳过其中一点后求距离的最小值: a. 路径从0到N依次连接; b. 固定起始点a[0]=(0,0)和终点a[n]=(100,100); c. 假设三个点a、b、c,从a到c经过b,距离为ab+bc,跳过b后距离为ac; d. 为简化算法,所有点坐标皆为整数。 double[,] a = new double[,] { { 0, 0 }, { 1, 2 }, { 3,...
2020-04-16 14:45:59 338
原创 无序数组中的第三小的元素
一、堆栈Stack<T> double[] a = new double[] { 10, 10, 10, 10, 20, 20, 30, 30, 40, 40 }; double ThirdItem(double[] a) { if (a == null || a.Length < 3) return -1; else { Stac...
2020-04-16 13:46:31 244
原创 tiny-online富文本编辑器
<script src="https://cdn.tiny.cloud/1/{usercode}/tinymce/5/tinymce.min.js" referrerpolicy="origin" type="text/javascript"></script> // rich text editor tinymce.init({ ...
2020-04-14 16:11:56 451
原创 IE浏览器版本
!-[1,] == false // if it's not ie8, then return true, else return false. //獲取IE版本 function IEVersion() { var browser = navigator.appName; var b_version = navigator.appVersion; var versio...
2020-04-14 16:11:24 175
原创 禁用form表单enter提交
//按回車不提交表单 $(document).on("keypress", ":input:not(textarea)", function (e) { e = e ? e : window.event; var keycode = e.which ? e.which : e.keyCode; if (keycode == 13) { return fal...
2020-04-14 16:10:28 359
EFDemo.zip
2020-04-24
EFDemo.zip
2020-04-23
MsEntLibDemo.zip
2020-04-20
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人