码迷,mamicode.com
首页 >  
搜索关键字:color    ( 180498个结果
Spring MVC annotation configuration
1. Web.xml springMvcDemo index.jsp springMVC org.springframework.web.servlet.DispatcherServlet ...
分类:编程语言   时间:2014-08-21 13:06:04    阅读次数:279
spring3.0事务管理配置
转载:http://war-martin.iteye.com/blog/1396335第一种配置方法:基于XML的事务管理这种方法不需要对原有的业务做任何修改,通过在XML文件中定义需要拦截方法的匹配即可完成配置,要求是,业务处理中的方法的命名要有规律,比如setXxx,xxxUpdate等等。详细...
分类:编程语言   时间:2014-08-21 13:05:54    阅读次数:180
佛祖保佑 永无bug
/* _ooOoo_ o8888888o 88" . "88 (| -_- |) O\ ...
分类:其他好文   时间:2014-08-21 13:05:14    阅读次数:153
JavaScript获取浏览器类型与版本
从网上找到一段使用JavaScript判断浏览器以及浏览器版本的比较好的代码,在此记录一下: 1 将上述代码封装成一个方法,方法返回Sys对象,Sys对象中封装了浏览器的类型和版本信息,如下:1 function getBrowserInfo(){2 var Sys = {};3 ...
分类:编程语言   时间:2014-08-21 13:05:04    阅读次数:315
S1:new操作符
function Shape(type){ this.type = type || "rect"; this.calc = function(){ return "calc, "+this.type; }}var triangle = new Shape("trian...
分类:其他好文   时间:2014-08-21 13:04:04    阅读次数:215
LeetCode "Distinct Subsequences" - TO BE REVISED
A classic and representative DP problem. To be revised later. Quite a few interesting details to think about.class Solution {public: int numDistinc...
分类:其他好文   时间:2014-08-21 13:03:34    阅读次数:180
jQuery异步获取json数据的2种方式
jQuery异步获取json数据有2种方式,一个是$.getJSON方法,一个是$.ajax方法。本篇体验使用这2种方式异步获取json数据,然后追加到页面。 在根目录下创建data.json文件:{ "one" : "Hello", "two" : "World"}■ 通过$.getJSON方法获...
分类:Web程序   时间:2014-08-21 13:03:14    阅读次数:188
C#学习笔记 ----核心C#
在C#中做的所有工作都依赖于.NET基类变量C#有俩个方法可确保变量在使用前进行了初始化:.变量是类或结构中的字段,如果没有显式初始化,创建这些变量时,其默认值是0.方法的局部变量必须在代码中显式初始化,之后才能在语句中使用它们的值类型推断(type inference)使用var关键字常量 关键字...
分类:其他好文   时间:2014-08-21 13:03:04    阅读次数:187
如何将数据库中的表导成XML文件
1.现将数据库中的信息读到DataTable中2.用函数将DataTable转为string private string ConvertDataTableToXML(DataTable dt) { if (dt != null) ...
分类:数据库   时间:2014-08-21 13:02:54    阅读次数:170
Power aware dynamic scheduling in multiprocessor system employing voltage islands
Minimizing the overall power conservation in a symmetric multiprocessor system disposed in a system-on-chip (SoC) depends on using voltage islands ope...
分类:其他好文   时间:2014-08-21 13:02:34    阅读次数:218
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!