1.安装mavn在settings.xml设置下载链接 <mirror> <id>nexus-aliyun</id> <mirrorOf>*,!jeecg,!jeecg-snapshots</mirrorOf> <name>Nexus aliyun</name> <url>http://maven. Read More
posted @ 2019-07-03 10:17 Code_Dog Views(242) Comments(0) Diggs(0) Edit
function js_method(){ window.open("http://localhost:1234/test/user/mylogin?login=test"); } <a src="" href="javascript:void(0);" onclick="js_method()"> Read More
posted @ 2019-06-27 17:35 Code_Dog Views(2701) Comments(0) Diggs(0) Edit
一、Hsql简介: hsql数据库是一款纯Java编写的免费数据库,许可是BSD-style的协议。 仅一个hsqldb.jar文件就包括了数据库引擎,数据库驱动,还有其他用户界面操作等内容。下载地址:https://sourceforge.net/projects/hsqldb/files/hsq Read More
posted @ 2018-09-22 23:02 Code_Dog Views(760) Comments(1) Diggs(0) Edit
最近写程序常会遇到deadlock victim,每次一脸懵逼。研究了下怎么跟踪,写下来记录下。 建测试数据 CREATE DATABASE testdb; GO USE testdb; CREATE TABLE table1 ( id INT IDENTITY PRIMARY KEY, stude Read More
posted @ 2018-09-07 11:47 Code_Dog Views(3285) Comments(2) Diggs(1) Edit
class SortAlgorithm { static void Main(string[] args) { int[] arr1 = { 1, 4, 2, 7, 9, 8, 3, 6 }; //ShellSort(arr1);希尔排序, //DirectInsertSort(arr1);直接插入 Read More
posted @ 2018-01-07 12:39 Code_Dog Views(375) Comments(0) Diggs(0) Edit
基于.NET平台常用的框架整理https://www.cnblogs.com/hgmyz/p/5313983.html .net框架https://www.cnblogs.com/zynbg/p/5889442.html Asp.net网站提供的Sample Projects https://www Read More
posted @ 2017-11-14 16:56 Code_Dog Views(411) Comments(0) Diggs(0) Edit
在工作中我们遇到国际化时,经常要处理时区问题。这两个类都是处理时区的我们应该怎样选择呢?TimeZone 类来检索有关当前时区的信息,并将时间从本地时间转换为协调世界时 (UTC),也就是说这个类是用来处理LocalTimeZone和UTC时间的。TimeZoneInfo类可以处理系统上预定义的任何... Read More
posted @ 2012-08-30 23:39 Code_Dog Views(12997) Comments(1) Diggs(3) Edit