上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: select * from ( select * from (SELECT c.*,row_number() over(PARTITION BY c.reg_channels ORDER BY c.CREATE_TIME DESC) rn FROM app_user c ) where rn=1 )jj where jj.reg_channels='SAPP002' 阅读全文
posted @ 2016-07-06 10:11 也许还年轻 阅读(383) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2016-05-26 15:47 也许还年轻 阅读(3) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2016-04-26 10:12 也许还年轻 阅读(1) 评论(0) 推荐(0) 编辑
摘要: package com.jy.demo.web; import java.io.FileOutputStream; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apach... 阅读全文
posted @ 2016-04-25 11:16 也许还年轻 阅读(368) 评论(0) 推荐(0) 编辑
摘要: package com.jy.demo.web; import java.security.Provider; import java.security.SecureRandom; import java.security.Security; import java.util.Arrays; import javax.crypto.Cipher; import javax.crypto.K... 阅读全文
posted @ 2016-04-25 11:14 也许还年轻 阅读(866) 评论(0) 推荐(0) 编辑
摘要: tail -f /home/jyapp/apache-tomcat-7.0.59/logs/catalina.out //查看实施日志 //删除临时目录并且启动服务器 rm -rf /home/jyapp/apache-tomcat-7.0.59/work/* & rm -rf /home/jyap 阅读全文
posted @ 2016-04-25 09:57 也许还年轻 阅读(267) 评论(0) 推荐(0) 编辑
摘要: 多数你可能被问到的问题都列举在下面的列表中了。所有的核心模块,从基础的Spring功能(如Spring Beans)到上层的Spring MVC框架,文章中都会进行简短的讲解。看完这些面试问题,你应该看看我们的Spring教程。 我们开始吧! 目录 Spring概述 依赖注入 Spring Beans Spring注解 Spring的对象访问 Spring面向切面编程 Spri... 阅读全文
posted @ 2016-04-05 14:34 也许还年轻 阅读(12158) 评论(0) 推荐(2) 编辑
摘要: import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class ReflectionUtils { /** * 循环向上转型, 获取对象的 Declare... 阅读全文
posted @ 2016-04-05 14:14 也许还年轻 阅读(403) 评论(0) 推荐(0) 编辑
摘要: /* * CopyRright (c) 2013, Minxin and/or its affiliates. All rights reserved. */ package com.minxinloan.common.utils; import java.util.Calendar; import java.util.Date; /** * 日期计算工具类 * * @autho... 阅读全文
posted @ 2016-04-05 10:58 也许还年轻 阅读(231) 评论(0) 推荐(0) 编辑
摘要: /** * Copyright (c) 2005-2012 springside.org.cn * * Licensed under the Apache License, Version 2.0 (the "License"); */ package com.minxinloan.common.utils; import java.security.SecureRandom; imp... 阅读全文
posted @ 2016-04-05 10:56 也许还年轻 阅读(1112) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页