`
firecool
  • 浏览: 83486 次
  • 性别: Icon_minigender_1
  • 来自: 重庆
社区版块
存档分类
最新评论
文章列表
Many batch processing problems can be solved with single threaded, single process jobs, so it is always a good idea to properly check if that meets your needs before thinking about more complex implementations. Measure the performance of a realistic job and see if the simplest implementation meets ...
All batch processing can be described in its most simple form as reading in large amounts of data, performing some type of calculation or transformation, and writing the result out. Spring Batch provides three key interfaces to help perform bulk reading and writing: ItemReader,ItemProcessor and Ite ...
Spring Batch 2.1.8 中文文档(一) Spring Batch 2.1.8 中文文档(二) Spring Batch 2.1.8 中文文档(三) Spring Batch 2.1.8 中文文档(四) Spring Batch 2.1.8 中文文档(五) Spring Batch 2.1.8 中文文档(六)

设计模式备忘录

    博客分类:
  • java
创建型模式   1.抽象工厂模式 AbstractFactory  2.建造者模式 Builder 封装一个对象的构建过程,并允许按步骤构造。  3.工厂方法模式 Factory Method  4.原型模式 Prototype  5.单例模式 Singleton    结构型模式    1.适配器模式 Adap ...
http://android.modaco.com/content/htc-legend-legend-modaco-com/307487/24-may-r4-htc-legend-rooting-guide-now-with-1-31-x/
在db2中导入导出表        (1) 导出表结构并且数据是二进制格式:export to filename.ixf of ixf select * from tableName where condition;             导出的数据为二进制格式,不能用文本文本编辑器进行编辑。       (2) 只导出表中的数据,而不导出表结构的语句;             export to filename.del of del select * from taablename where conditon;此语句不导出表的格式,并且能用             记事本等asc码编 ...

踩个脚印

最近手上没有什么项目,准备开始学习python语言,先建个分类,留个脚印,然后开始我的第二程序人生。
因为ubuntu中的系统默认字体变成了ttc sudo ln -s /usr/share/fonts/truetype/arphic/uming.ttc /usr/share/fonts/truetype/arphic/uming.ttf
加源:代码: deb http://dl.google.com/linux/deb/ stable main #Google 然后代码: sudo apt-get updatesudo apt-get install google-chrome-unstable
Windows中修改这些信息很容易,Ubuntu中就复杂得多。下面是从网上找到的方法。      sudo cp /etc/samba/smb.conf /etc/samba/smb.conf_backup # 备份配置文件   sudo gedit /etc/samba/smb.conf      找到这行:   workgroup = MSHOME      用以下行替换:   workgroup = new_domain_or_workgroup      保存编辑的文件。      sudo testparm   sudo /etc/init.d/samba ...
台湾 代码: deb http://tw.archive.ubuntu.com/ubuntu/ karmic main universe restricted multiverse deb http://tw.archive.ubuntu.com/ubuntu/ karmic-updates universe main multiverse restricted deb http://tw.archive.ubuntu.com/ubuntu/ karmic-proposed universe main multiverse restricted deb http://tw. ...
ubuntu9.10使用了grub2(不确定是不是2),与以往不同新版本的grub 的引导配置文件不再是menu.lst而是/boot/grub /grub .cfg ,这个文件默认是只读的,因此在修改之前需要先将其改为可写。 root@ptubuntu:/home/ptubuntu# chmod +w /boot/grub /grub .cfg 然后就可以修改了。给其中加上如下内容即可 root@ptubuntu:/home/ptubuntu# vi /boot/grub /grub .cfg 添加后内容如下: ### BEG ...
package jp.swtech; import java.awt.BorderLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.io.File; import java.io.FileInputStream; import java.io.RandomAccessFile; import java.nio.MappedByteBuffer; import java.nio.channels.FileChannel; import ...
package cn.com.oneslife; import java.util.Random; public class RandomUtil { static { StringBuilder sb = new StringBuilder(); for(char c = (char)0x3041; c < (char)0x3094; c++){ sb.append(c); } JP_SBC_HIRAGAN = sb.toString(); ...

javadoc参数

    博客分类:
  • java
生成javadoc的时候添加的参数,不然中文会出现乱码!
Global site tag (gtag.js) - Google Analytics