摘要:
有人曾说2005年一片叫春之声,指的就是该框架 Spring起源于Rod Johnson的《Expert One-on-One J2EE Design and Development》一书 Rod Johnson认为,J2ee里面的那一套//尤其是ejb 太重了,对于单机的系统来说,没有必要使用那么复杂的东西 于是就开始设计并引导Spring小组开发出这样一个构架 不能不说他是个天才,因为的的确确不是所有的系统都是跨多服务器的 没有必要把一个简单的系统设计得那么复杂//天才的那几个共性又体现出来了 Spring从诞生之日起就是针对EJB的,力争在不少应用上取代EJB 而它也确实达到了这个目的 阅读全文
阅读排行榜
oracle 按每天,每周,每月,每季度,每年查询统计数据
2012-02-21 16:39 by javaspring, 730 阅读, 收藏,
摘要:
oracle 按每天,每周,每月,每季度,每年查询统计数据//按天统计select count(dataid) as 每天操作数量, sum()from tablenamegroup by trunc(createtime, 'DD'))//按自然周统计 select to_char(date,'iw'),sum() from tablenamegroup by to_char(date,'iw') //按自然月统计 select to_char(date,'mm'),sum() from tablenamegroup by to 阅读全文
Java跳出外层循环
2012-07-13 22:47 by javaspring, 721 阅读, 收藏,
摘要:
在这里介绍两种方法1.使用java的标号,结合break下面是代码public static void main(String[] args) { tiao:for(int i=0;i<4;i++) { for(int j=0;j<4;j++) { System.out.println(i+"||"+j); if(i==2&&j==2) break tiao; } } }这里要注意的就是标号只能在for while do...while三中循环语句前定义,标签与循环语句之间不能有任何语句2.使得内部的循环条件不满足,外部循环条件也不满足... 阅读全文
Kind Editor 编辑器 图片上传
2012-06-13 13:54 by javaspring, 702 阅读, 收藏,
摘要:
KindEditor 编辑器 图片上传最近接触到了html文本的存储。 以前没有涉及这么全面的html + 图片 上传。今天用KindEditor 做了一些功能。 我的项目用spring mvc+mybatis 整的。贴出我的前端和后端代码 。供新手参考。 不用多余jar。 跟普通上传图片差不多。前端js代码var editor; KindEditor.ready(function(K) { var editor = K.create('textarea[name="Description"]', { uploadJson : 'kingedit/i 阅读全文
android tabhost位于底部
2012-05-21 21:00 by javaspring, 698 阅读, 收藏,
摘要:
从网上找了一圈 大致有两种方法方法一:Java代码 <TabHost xmlns:android="http://schemas.android.com/apk/res/android"android:id="@android:id/tabhost" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="vertical" 阅读全文
浙公网安备 33010602011771号