摘要:
@RequestParam 注解org.springframework.web.bind.annotation.RequestParam注解类型用于将指定的请求参数赋给方法中的形参。使用@RequestParam注解可指定如下表所示的属性。 请求处理方法参数的可选类型为Java基本数据类型和Stri 阅读全文
摘要:
select `字段`, length(`字段`) from 表名 where length(`字段`) = ( select max(length(`字段`)) from 表名 ) 阅读全文
摘要:
1.使用org.springframework.jdbc.dataSource.DriverManagerDataSource 说明:DriverManagerDataSource建立连接是只要有连接就新建一个connection,根本没有连接池的作用。 2.使用org.apache.commons 阅读全文
摘要:
SqlSessionTemplate是MyBatis-Spring的核心。这个类负责管理MyBatis的SqlSession,调用MyBatis的SQL方法,翻译异常。SqlSessionTemplate是线程安全的,可以被多个DAO所共享使用。当调用SQL方法时,包含从映射器getMapper() 阅读全文
摘要:
SQL中 between and是包括边界值的,not between不包括边界值,不过如果使用between and 限定日期需要注意,如果and后的日期是到天的,那么默认为00:00:00 例如:and 后的日期为2013年3月24日,就等价于2013-3-24 00:00:00 ,那么2013 阅读全文
摘要:
1.先定义一个监听类: 2.制定定时任务类: 3.web.xml配置监听类 阅读全文
摘要:
解决的方法当然是设定这个时间,让其大于45秒,修改在当前项目所在的workspace\.metadata\.plugins\org.eclipse.wst.server.core\servers.xml 找到servers.xml中的start-timeout="45",改成你需要的整数数值,保存, 阅读全文
摘要:
如果 date_field = TRUNC(date_field) 就说明时分秒为0(也就是不包含),否则就包含时分秒 阅读全文
摘要:
public class OneHundredRandom { public static void main(String[] args) { List list = new ArrayList(); for (int i = 0; i < 100; i++) { list.add(i+1); } ... 阅读全文
摘要:
public class StatisticZEN { public static void main(String[] args) { String str = "中国aadf的111萨bbb菲的zz萨菲"; statisticsChar(str); } private static HashMap statisticsChar(Str... 阅读全文