@ControllerAdvice,是spring3.2提供的新注解,从名字上可以看出大体意思是控制器增强。让我们先看看@ControllerAdvice的实现: Java代码 @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) ...
分类:
编程语言 时间:
2016-10-23 20:52:49
阅读次数:
305
题目:https://www.zhihu.com/question/51865837/answer/127892121 注:我是HE的,不是JS的,照片是ZYJ神犇的 单选 第一题,水过,小学生都会。D 第二题,当时我们场好多人错了。。坑点如下: 1.和pj组的不同,是来回按键。 2.让你求第81个 ...
分类:
其他好文 时间:
2016-10-23 14:45:59
阅读次数:
609
/** * 设置窗口位于屏幕中间 * @param shell 要调整位置的窗口对象 */ public static void center(Shell shell) { //获取屏幕高度和宽度 int screenH = Toolkit.getDefaultToolkit().getScreen ...
分类:
系统相关 时间:
2016-10-23 02:16:00
阅读次数:
386
简介 RecyclerView是support-v7中用来替换ListView的组件。RecyclerView 小组件比 ListView 更高级且更具灵活性。 此小组件是一个用于显示庞大数据集的容器,可通过保持有限数量的视图进行非常有效的滚动操作。 如果您有数据集合,其中的元素将因用户操作或网络事 ...
分类:
移动开发 时间:
2016-10-22 18:07:44
阅读次数:
306
#include <iostream>#include <fstream> using namespace std; int main(){ string x, y, z; cin >> x >> y >> z; ifstream file1(x.c_str()); ifstream file2(y ...
分类:
其他好文 时间:
2016-10-22 15:05:03
阅读次数:
154
1.0 指定目录找文件 public class ListAllTest { public static void main(String[] args) { File dir = new File("E:\\Java"); listAll(dir, 0); } public static void ...
分类:
其他好文 时间:
2016-10-22 00:42:29
阅读次数:
208
原文:http://blog.sina.com.cn/s/blog_786ce14d01014lpr.html string 是c++标准库里面其中一个,封装了对字符串的操作把string转换为char* 有3中方法:1.data如:string str="abc";char *p=str.data ...
分类:
其他好文 时间:
2016-10-22 00:24:18
阅读次数:
171
安装前介质准备: DBI-1.636.tar.gz DBD-mysql-4.037.tar.gz ETL.tar Perl下载地址: 第一部分 Mysql数据库安装 链接如:http://jingyan.baidu.com/article/a378c9609eb652b3282830fd.html ...
分类:
数据库 时间:
2016-10-16 01:11:32
阅读次数:
633
在本课中,将修改在第 5 课: 添加包部署模型的包配置中创建的包,以便使用项目部署模型。您将使用一个参数替换该配置值,以便指定示例数据位置。还可以复制本教程附带的已完成的 Lesson 5 包。 使用 Integration Services 项目配置向导,您将该项目转换为项目部署模型,并且使用参数 ...
分类:
其他好文 时间:
2016-10-10 21:04:21
阅读次数:
308