using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; //如果账户金额小于0 触发事件 namespace Starter { public delegate int DeleageteClass(out DateTime start, out DateTime stop); class Program { static void
0配置文件的形式主要是采用spring3.0提供的@configuration注解和spring容器在启动的时候会加载实现了WebApplicationInitializer的类,并调用其onStartUp的方法的特性去实现. 具体做法如下: 1.建立MyWebAppInitializer去实现WebApplicationInitializer接口,并且去重写其onStartUp方法.实际上这个类取代了web.xml的配置.代码如下: public class MyWebAppInitializ
mybatis将传入的Integer类型的0被识别成空字符串,网上的解决办法: <if test="status != null and status != '' or status == 0"> and status = #{status, jdbcType = INTEGER}</if> 然而还是有无效的时候.既然status==''时无效,就将其置为null.此时就在Java中对该参数进行处理,当 status == '' 时将其赋值为 null. @Po