在使用声明方式的AOP编程中,遇到以下两个问题,解决方法如下: (1)error?at?::0 formal unbound in pointcut 解决方法:去掉函数通知函数中的参数,比如:将 @Before("execution(public void com.bjsxt.dao...
分类:
其他好文 时间:
2015-04-07 23:37:50
阅读次数:
362
JDK命令行工具 jps:JVM Process Status Tool,显示指定系统内所有的HotSpot虚拟机进程,可以通过RMI协议查询开启了RMI服务的远程虚拟机进程状态 jps [options] [hos tid] 列出正在运行的虚拟机进程,显示执行主类...
分类:
其他好文 时间:
2015-04-07 23:35:33
阅读次数:
467
1. p12证书导出 在钥匙串访问中选中推送证书,导出为个人信息交换文件(.p12格式)。 选择文件格式、文件名和保存路径。 输入导出密码。 2. pem证书生成 将p12证书文件转换成pem证书文件。在终端里运行以下命令转...
分类:
其他好文 时间:
2015-04-07 23:37:51
阅读次数:
410
AsyncTask AsyncTask,它使创建需要与用户界面交互的长时间运行的任务变得更简单。相对来说AsyncTask更轻量级一些,适用于简单的异步处理,不需要借助线程和Handler即可实现。? AsyncTask是抽象类.AsyncTask定义...
分类:
移动开发 时间:
2015-04-07 23:36:05
阅读次数:
401
这两天对公司的的openstack环境进行测试,因为环境是别的同事搭建的,我这边只负责相关的测试,一台服务器独立安装
controller node,另外两台服务器都安装network node+compute node。大概环境如下:
外网IP网段是192.168.1.0/24,其中192.168.1.100~192.168.1.200为floatingip分配范围,内网IP网段是1...
分类:
其他好文 时间:
2015-04-07 23:34:46
阅读次数:
360
在“app后端”qq群中,经常被问到的一个问题:“怎么设计一个应付高并发的架构”。诚然,设计一个能应付百万流量的高并发架构,是很令人兴奋的技术挑战,但在创业公司中的成长,难道就只有设计架构吗?在这篇文章中,谈谈我对这方面的看法。...
分类:
其他好文 时间:
2015-04-07 23:36:33
阅读次数:
317
上个星期,米老师给我们讲课实在是精彩!本人终于对Pv操作有了自己的理解。之前一直不太理解Pv操作,现在总结一下,以供下阶段学习和总结。
为什么叫PV操作?原因是:这是狄克斯特拉用荷兰文定义的,因为在荷 兰文中,通过叫passeren,释放叫vrijgeven,PV操 作因此得名。
这张图乍一看谁也不知道我想说明什么。我想通过这张图来给大家解释一下PV操作!
中间这加粗的黑线是秤杆...
分类:
其他好文 时间:
2015-04-07 23:35:43
阅读次数:
513
投影矩阵最终建立的是一个平截头体(也可以称为台),在这种变换下呈现远小近大的效果。这里我将我学到知识记录下来,以后备忘用。...
分类:
其他好文 时间:
2015-04-07 23:35:22
阅读次数:
592
题意:求一个数组中的组合为某个target的所有子数组组合,要求不重复,
思路:先将数组排序,然后按深度遍历的思想对i - > len -1的元素进行遍历
代码如下:
public class Solution {
public List> combinationSum(int[] candidates, int target) {
List> results = n...
分类:
其他好文 时间:
2015-04-07 23:33:43
阅读次数:
325
题意:
给出宝藏个数,然后给出每个宝藏的位置;
如果四个宝藏构成正方形就能取走;
问最多取走几个;
#include
#include
#include
using namespace std;
const int N = 25;
int n, ans;
int cnt[105][105];
struct node {
int x;
int y;
bool operator<(no...
分类:
其他好文 时间:
2015-04-07 23:34:29
阅读次数:
384
进程的描述ulk那个大图 for task_struct提纲挈领,看代码前总览
序言 进程控制块PCB——task_struct为了管理进程,内核必须对每个进程进行清晰的描述,进程描述符提供了内核所需了解的进程信息。
struct task_struct数据结构很庞大Linux进程的状态与操作系统原理中的描述的进程状态似乎有所不同,比如就绪状态和运行状态都是TASK_RUNNING,为什么呢...
分类:
系统相关 时间:
2015-04-07 23:33:39
阅读次数:
382
Wall
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4001 Accepted Submission(s): 1131
Problem Description
Once upon a time ther...
分类:
其他好文 时间:
2015-04-07 23:35:51
阅读次数:
360
题目链接:Partition List
Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.
You should preserve the original relative order of t...
分类:
其他好文 时间:
2015-04-07 23:33:18
阅读次数:
292
题目链接:Scramble String
Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.
Below is one possible representation of s1 = "great":
...
分类:
其他好文 时间:
2015-04-07 23:33:46
阅读次数:
556
题目链接:Merge Sorted Array
Given two sorted integer arrays A and B, merge B into A as one sorted array.
Note:
You may assume that A has enough space (size that is greater or equal to m + n) to hold ad...
分类:
其他好文 时间:
2015-04-07 23:34:47
阅读次数:
349