自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(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 201 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 274

原创 微软企业库(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 1010

转载 透彻的掌握 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 121

转载 AOP

面向切面的程序设计(Aspect-oriented programming,AOP,又译作面向方面的程序设计、剖面导向程序设计)是计算机科学中的一种程序设计思想,旨在将横切关注点与业务主体进行进一步分离,以提高程序代码的模块化程度。通过在现有代码基础上增加额外的通知(Advice)机制,能够对被声明为“切点(Pointcut)”的代码块进行统一管理与装饰,如“对所有方法名以‘set*’开头的方法添...

2020-04-17 15:34:15 106

翻译 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: 2Explanation: The longest valid...

2020-04-17 11:47:09 81

原创 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 150

原创 动态规划——不等式

已知数列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&gt...

2020-04-16 17:06:16 392

原创 最短路径算法

坐标轴上有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 317

原创 无序数组中的第三小的元素

一、堆栈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 221

原创 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 431

原创 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 141

原创 禁用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 329

EFDemo.zip

程式采用ASP.NET MVC + Entity Framework 框架; 使用Visual Studio 2019自带工具,根据Model自动创建MVC程式。

2020-04-24

EFDemo.zip

程式采用ASP.NET MVC + Entity Framework 框架; 使用Visual Studio 2019自带工具,根据Model自动创建MVC程式。

2020-04-23

MsEntLibDemo.zip

微软企业库实现 DATA ACCESS BLOCK : 1. 包含基本的 ASP .NET MVC 实现; 2. 数据库创建; 3. 表创建; 4. 基本的数据库CRUD方法例子。

2020-04-20

十进制数的IEEE 754 32位标准化

将十进制数转化成IEEE 754 32位标准形式输出 限制十进制数绝对值小于2^23并且大于1/2^23.

2011-03-31

软件生命周期(英文)

作者:安德里•特拉布特里,2007年信息专业理学硕士 The Systems Development Life Cycle (SDLC) is generally interpreted as the set of procedures that transform inputs into outputs and as the method by which information systems are built. In the software development industry, the SDLC not only produces information systems but also is itself a type of information system tied to the underlying fabric of a company’s business model. Integration of the SDLC with business process is essential for effective software solutions and compliance with industry regulations.

2011-03-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除