在使用声明方式的AOP编程中,遇到以下两个问题,解决方法如下: (1)error?at?::0 formal unbound in pointcut 解决方法:去掉函数通知函数中的参数,比如:将 @Before("execution(public void com.bjsxt.dao...
分类:
其他 时间:
2015-04-07 23:35:25
收藏:
0 评论:
0 赞:
0 阅读:
601
JDK命令行工具 jps:JVM Process Status Tool,显示指定系统内所有的HotSpot虚拟机进程,可以通过RMI协议查询开启了RMI服务的远程虚拟机进程状态 jps [options] [hos tid] 列出正在运行的虚拟机进程,显示执行主类...
分类:
其他 时间:
2015-04-07 23:35:15
收藏:
0 评论:
0 赞:
0 阅读:
474
1. p12证书导出 在钥匙串访问中选中推送证书,导出为个人信息交换文件(.p12格式)。 选择文件格式、文件名和保存路径。 输入导出密码。 2. pem证书生成 将p12证书文件转换成pem证书文件。在终端里运行以下命令转...
分类:
其他 时间:
2015-04-07 23:35:05
收藏:
0 评论:
0 赞:
0 阅读:
409
AsyncTask AsyncTask,它使创建需要与用户界面交互的长时间运行的任务变得更简单。相对来说AsyncTask更轻量级一些,适用于简单的异步处理,不需要借助线程和Handler即可实现。? AsyncTask是抽象类.AsyncTask定义...
分类:
移动平台 时间:
2015-04-07 23:34:56
收藏:
0 评论:
0 赞:
0 阅读:
509
这两天对公司的的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:05
收藏:
0 评论:
0 赞:
0 阅读:
476
Linux下安装MongoDB并设置自启动...
分类:
数据库技术 时间:
2015-04-07 23:33:55
收藏:
0 评论:
0 赞:
0 阅读:
516
在“app后端”qq群中,经常被问到的一个问题:“怎么设计一个应付高并发的架构”。诚然,设计一个能应付百万流量的高并发架构,是很令人兴奋的技术挑战,但在创业公司中的成长,难道就只有设计架构吗?在这篇文章中,谈谈我对这方面的看法。...
分类:
其他 时间:
2015-04-07 23:33:45
收藏:
0 评论:
0 赞:
0 阅读:
412
上个星期,米老师给我们讲课实在是精彩!本人终于对Pv操作有了自己的理解。之前一直不太理解Pv操作,现在总结一下,以供下阶段学习和总结。
为什么叫PV操作?原因是:这是狄克斯特拉用荷兰文定义的,因为在荷 兰文中,通过叫passeren,释放叫vrijgeven,PV操 作因此得名。
这张图乍一看谁也不知道我想说明什么。我想通过这张图来给大家解释一下PV操作!
中间这加粗的黑线是秤杆...
分类:
其他 时间:
2015-04-07 23:33:35
收藏:
0 评论:
0 赞:
0 阅读:
583
投影矩阵最终建立的是一个平截头体(也可以称为台),在这种变换下呈现远小近大的效果。这里我将我学到知识记录下来,以后备忘用。...
分类:
其他 时间:
2015-04-07 23:33:25
收藏:
0 评论:
0 赞:
0 阅读:
426
题意:求一个数组中的组合为某个target的所有子数组组合,要求不重复,
思路:先将数组排序,然后按深度遍历的思想对i - > len -1的元素进行遍历
代码如下:
public class Solution {
public List> combinationSum(int[] candidates, int target) {
List> results = n...
分类:
其他 时间:
2015-04-07 23:33:15
收藏:
0 评论:
0 赞:
0 阅读:
380
题意:
给出宝藏个数,然后给出每个宝藏的位置;
如果四个宝藏构成正方形就能取走;
问最多取走几个;
#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:33:05
收藏:
0 评论:
0 赞:
0 阅读:
388
进程的描述ulk那个大图 for task_struct提纲挈领,看代码前总览
序言 进程控制块PCB——task_struct为了管理进程,内核必须对每个进程进行清晰的描述,进程描述符提供了内核所需了解的进程信息。
struct task_struct数据结构很庞大Linux进程的状态与操作系统原理中的描述的进程状态似乎有所不同,比如就绪状态和运行状态都是TASK_RUNNING,为什么呢...
分类:
系统服务 时间:
2015-04-07 23:32:55
收藏:
0 评论:
0 赞:
0 阅读:
574
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:32:45
收藏:
0 评论:
0 赞:
0 阅读:
492
题目链接: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:32:25
收藏:
0 评论:
0 赞:
0 阅读:
383
题目链接: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:32:15
收藏:
0 评论:
0 赞:
0 阅读:
474
题目链接: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:32:05
收藏:
0 评论:
0 赞:
0 阅读:
428
题目链接:Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.
Given a non-negative integer n representing the total number of bits in the code, print th...
分类:
其他 时间:
2015-04-07 23:31:55
收藏:
0 评论:
0 赞:
0 阅读:
527
题目链接:Subsets II
Given a collection of integers that might contain duplicates, S, return all possible subsets.
Note:
Elements in a subset must be in non-descending order.The solution set must not ...
分类:
其他 时间:
2015-04-07 23:31:45
收藏:
0 评论:
0 赞:
0 阅读:
431
API 地址:http://docs.oracle.com/javase/6/docs/api/
涉及概念之间的关系如下:
图解:
List 是一个接口,它继承于Collection的接口。它代表着有序的队列。它允许重复的元素。
AbstractList 是一个抽象类,它继承于AbstractCollection。AbstractList实现List接口中除size()、get(i...
分类:
编程语言 时间:
2015-04-07 23:31:35
收藏:
0 评论:
0 赞:
0 阅读:
479
题目:一只青蛙一次可以跳上 1 级台阶,也可以跳上2 级。求该青蛙跳上一个n 级的台阶总共有多少种跳法。
我的思路:最开始我的思路是把这个看成是一个数学问题,n=i*1+k*2先把所有可能满足这个公式的i和k求出来。然后在对i和k做排列组合。很明显i的范围应该是0
public int JumpFloor(int target) {
int step = 0;
for (int...
分类:
其他 时间:
2015-04-07 23:31:25
收藏:
0 评论:
0 赞:
0 阅读:
454