会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Kikyo
纸上得来终觉浅,绝知此事要躬行。
博客园
新随笔
管理
上一页
1
···
27
28
29
30
31
32
33
34
35
···
56
下一页
2020年3月15日
【Spring helper】在controller和service间添加业务处理helper类
摘要: SysUserHelper package com.sys.helper; import com.utils.AjaxResult; import com.pageModel.SysUserInf; import com.sys.service.ISystemUserService; import
阅读全文
posted @ 2020-03-15 22:29 一只桔子2233
阅读(474)
评论(0)
推荐(0)
2020年3月14日
【 spring resources 】maven项目resources文件夹,配置文件的spring加载方式
摘要: Maven项目Resource标签 打包时加入java文件夹的配置文件 在<build>元素下添加<resources>进行配置,即可自定义xml及properties配置文件位置 <build> <resources> <resource> <directory>src/main/resource
阅读全文
posted @ 2020-03-14 01:15 一只桔子2233
阅读(701)
评论(0)
推荐(0)
2020年3月7日
【 Java Socket】
摘要: Socket private static void M1() throws Exception { Thread serverThread = new Thread() { @Override public void run() { try { ServerSocket server = new
阅读全文
posted @ 2020-03-07 21:58 一只桔子2233
阅读(123)
评论(0)
推荐(0)
2020年3月5日
【 Java 设计模式 】 单例模式
摘要: 推荐单例模式 /** * 单例模式 - 饿汉式 */ class Singleton { private Singleton() { } private static final Singleton instance = new Singleton(); public static Singleto
阅读全文
posted @ 2020-03-05 22:33 一只桔子2233
阅读(121)
评论(0)
推荐(0)
2020年3月2日
【jquery 交换位置】jquery交换Div位置
摘要: Jquery 动态交换两个div位置并添加Css动画效果 <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>jquery交换Div位置</title> </head> <body> <div id="top" style="w
阅读全文
posted @ 2020-03-02 11:55 一只桔子2233
阅读(1806)
评论(0)
推荐(0)
2020年3月1日
C# HttpHelper
摘要: HttpHelper using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Net.Security; using Syst
阅读全文
posted @ 2020-03-01 13:40 一只桔子2233
阅读(1253)
评论(0)
推荐(0)
2020年2月29日
【 C# 时间戳 】TimeHelper
摘要: TimeHelper public static class TimeHelper { public static string GetCurrentTimestamp(bool millisecond = true) { return DateTime.Now.ToTimestamp(millis
阅读全文
posted @ 2020-02-29 22:29 一只桔子2233
阅读(331)
评论(0)
推荐(0)
C# 获取时间戳
摘要: 1 long timestamp = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) / 10000; 2 /// <summary> /// 指定Post地址使用Get 方式获取全部字符串 /// </summary> ///
阅读全文
posted @ 2020-02-29 21:18 一只桔子2233
阅读(403)
评论(0)
推荐(0)
2020年2月27日
【 js 上传文件】
摘要: 上传文件 <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title></
阅读全文
posted @ 2020-02-27 18:49 一只桔子2233
阅读(122)
评论(0)
推荐(0)
2020年2月25日
【 Struts2 过滤器】
摘要: LoginInterceptor package k.util; import com.opensymphony.xwork2.ActionInvocation; import com.opensymphony.xwork2.interceptor.MethodFilterInterceptor;
阅读全文
posted @ 2020-02-25 22:10 一只桔子2233
阅读(114)
评论(0)
推荐(0)
上一页
1
···
27
28
29
30
31
32
33
34
35
···
56
下一页
公告