`
ollevere
  • 浏览: 265660 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
从http://archive.apache.org/dist/ws/axis2/tools/1_4_1/ 下载 axis2-eclipse-codegen-wizard.zip 和 axis2-eclipse-service-archiver-wizard.zip (打包和发布工具) 安装:直接把这2个ZIP解压后 放到 myeclipse 目录下的plugins目录中   启动myeclipse,在file->new->other中即可看到Axis2 Wizards,至此,axis2插件安装成功。
//酒店排序 Collections.sort(hotelGroups, new Comparator(){ public int compare(Object o1,Object o2) { SingleProductHotel singleProductHotel1 = (SingleProductHotel)(((SingleProductGroup)o1).getSingleProduct()); SingleProductHotel singleProductHotel2 = (SingleProductHotel)(((SingleProductG ...
   我们经常会在项目中碰到需要加载一些常量到内存中,以便不比每次需要使用时都去查询数据库, 如,一些国家信息,省份信息,地址信息等 不会变动 或变动很少,但数据量又比较大的数据, 这时我们就需要把这些数据加载进内存,需要使用时直接从内从中取。 下面是代码:     Dao 以下  我就不发了。 首先定义一个类,在这个类中进行调用DAO查询数据库 ,加载出数据 public class StartOnLoadService { public static Map<String,List> dictionaryInfoMap = new HashMap<String ...
http://doc.javanb.com/spring-framework-reference-zh-2-0-5/ch03s07.html#beans-factory-extension-factory-postprocessors
  Spring中Bean的实例化过程如下:     其中BeanPostProcessor的前置和后置处理的方法中都要返回该bean,不能是null,否则会报错NullPointException。
(转自http://blog.csdn.net/chensugang/article/details/3423650) Spring的BeanPostProcessor接口,该接口作用是:如果我们需要在Spring容器完成Bean的实例化,配置和其他的初始化后添加一些自己的逻辑处理,我们就可以定义一个或者多个BeanPostProcessor接口的实现。   BeanPostProcessor的作用域是容器级的,它只和所在容器有关。如果你在容器中定义了BeanPostProcessor,它仅仅对此容器中的bean进行后置。它不会对定义在另一个容器中的bean进行任何处理。     p ...
一、Spring装配Bean的过程 1. 实例化; 2. 设置属性值; 3. 如果实现了BeanNameAware接口,调用setBeanName设置Bean的ID或者Name; 4. 如果实现BeanFactoryAware接口,调用setBeanFactory 设置BeanFactory; 5. 如果实现ApplicationContextAware,调用setApplicationContext设置ApplicationContext 6. 调用BeanPostProcessor的预先初始化方法; 7. 调用InitializingBean的afterPropertiesSet()方法; ...
一个好习惯可以让自己享受一辈子  1.守时  买个闹钟,以便按时叫醒你。贪睡和不守时,都将成为你工作和事业上的绊脚石,任何时候都一样。不仅要学会准时,更要学会提前。就如你坐车去某地,沿途的风景很美,你忍 ...

JSP SELECT 回显

    博客分类:
  • JSP
1.使用JSTL 判断 选中: <select name="fellow.sex" disabled="disabled" value="${fellow.sex}"> <option value="P">-请选择-</option> <option value="M" <c:if test="${'M' eq fellow.sex}">selected</c:if>>男</option& ...
Mybatis 插入 数据库是为了防止插入空时报错, Mybatis 提供了一套机制,只要给定插入的字段的类型,如果为空,则它会自动处理为相应类型的默认值:   #{ordercd,jdbcType=VARCHAR}     我们都知道,Date类型是精确到时分秒的, 如果需要精确到秒以后,则需要使用 TIMESTAMP 类型   如果数据库字段类型为TIMESTAMP 则  #{operateTime,jdbcType=TIMESTAMP} 这样写是没有问题的。   而如果数据库字段类型为 Date, POJO类属性也是Date, 这时如果使用 #{operateTime, ...
计算分页总页数时 总报错: org.springframework.jdbc.InvalidResultSetAccessException: SqlSession operation; invalid ResultSet access for SQL []; nested exception is java.sql.SQLException: 无效的列索引     <parameterMap type="map" id="queryAllParamMap"> <parameter property="hotelT ...

JSP C标签

    博客分类:
  • JSP
1. choose...when... <td> 交易结果: <span id="hkbusinessscrip" style="color:red"> <c:choose> <c:when test="${'holdprocessing' eq hotelOrder.hotelTxnState}"> 未占配额 ...

JSP INPUT 控制输入

    博客分类:
  • JSP
//不能输入字母 <input type="text" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste="this.value=this.value.replace(/\D/g,'')"/>     //至能输入数字 <input type="text" onkeyup="this.value=this.value.replace(/\D/g,'')" onafterpaste=" ...

JSP SELECT 动态操作

    博客分类:
  • JSP
//动态添加Option document.getElementById("peopleNum").options.add(new Option(text, value));     //删除所有的Options document.getElementById("peopleNum").options.size = 0;      

jquery Ajax 使用

方式一: $.post(url, data , function(ms) {} ); 其中data 用的是类似: data = {'vallemp.seiId', eid};   方式二: $.ajax ( { url : 'mainServlet.html?packgname=service&clsname=DBService&method=service&operate=decideDBType&ds=tsdBilling', datatpe:'', //html, xml, data: ...
Global site tag (gtag.js) - Google Analytics