摘要:
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' 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
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... 阅读全文
摘要:
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... 阅读全文
摘要:
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 阅读全文
摘要:
多数你可能被问到的问题都列举在下面的列表中了。所有的核心模块,从基础的Spring功能(如Spring Beans)到上层的Spring MVC框架,文章中都会进行简短的讲解。看完这些面试问题,你应该看看我们的Spring教程。 我们开始吧! 目录 Spring概述 依赖注入 Spring Beans Spring注解 Spring的对象访问 Spring面向切面编程 Spri... 阅读全文
摘要:
import java.lang.reflect.Field; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; public class ReflectionUtils { /** * 循环向上转型, 获取对象的 Declare... 阅读全文
摘要:
/* * 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... 阅读全文
摘要:
/** * 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... 阅读全文