Maven读取resource文件小记

问题

工作中遇到要读取Maven的资源文件,当时使用的是如下写法,读取Maven子模块下的文件。

1
getClass().getResource("xxx.xml").getPath();

此写法在IDE下运行没有问题,但打成war包在运行则会报空指针异常。资源文件位置没有错误。

解决

1
2
InputStream is = getClass().getResourceAsStream("xxx.xml");
# 下面再对InputStream进行处理...

Ubuntu 包安装失败 - Unmet dependencies - Errors were encountered while processing

在Ubuntu服务器上安装Jenkins一直不成功,先是下载dpkg包,使用命令。然后用apt-get安装,都遇到了如下问题

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Reading package lists... Done
Building dependency tree
Reading state information... Done
jenkins is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
jenkins : Depends: daemon but it is not going to be installed
Depends: default-jre-headless (>= 2:1.7) but it is not going to be installed or
java7-runtime-headless
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
ci@88f78f64-194c-eeb3-fc36-e20231f58fed:~/applications$ sudo apt-get -f install jenkins
Reading package lists... Done
Building dependency tree
Reading state information... Done
jenkins is already the newest version.
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
jenkins : Depends: daemon but it is not going to be installed
Depends: default-jre-headless (>= 2:1.7) but it is not going to be installed or
java7-runtime-headless
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

根据提示我就

1
apt-get -f install

后来就报下面的了

1
2
3
4
5
Errors were encountered while processing:
libpam-systemd:amd64
policykit-1
colord
policykit-1-gnome

试了各种方法都无法解决。
有时提示让你apt-get autoremove,还试过

1
2
3
sudo dpkg --configure -a
sudo apt-get update && sudo apt-get dist-upgrade
# 等等其他方法

解决办法

1、备份dpkg的status文件

1
2
cd /var/lib/dpkg/
sudo cp status status_bak

2、编辑status文件

1
sudo vi status

3、查找你出问题的Package进行删除 policykit-1、colord等

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# other package

Package: policykit-1
Status: install ok unpacked
Priority: optional
Section: admin
Installed-Size: 400
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
Architecture: amd64
Multi-Arch: foreign
Version: 0.105-4ubuntu3.14.04.1
Depends: libc6 (>= 2.7), libglib2.0-0 (>= 2.37.3), libpam0g (>= 0.99.7.1), libpolkit-agent-1-0 (>= 0.105), libpolkit-backend-1-0 (>= 0.99), libpolkit-gobject-1-0 (>= 0.101), libpam-systemd, dbus
Conffiles:
/etc/dbus-1/system.d/org.freedesktop.PolicyKit1.conf newconffile
/etc/pam.d/polkit-1 newconffile
/etc/polkit-1/localauthority.conf.d/50-localauthority.conf newconffile
/etc/polkit-1/localauthority.conf.d/51-ubuntu-admin.conf newconffile
/etc/polkit-1/nullbackend.conf.d/50-nullbackend.conf newconffile
Description: framework for managing administrative policies and privileges
PolicyKit is an application-level toolkit for defining and handling the policy
that allows unprivileged processes to speak to privileged processes.
.
It is a framework for centralizing the decision making process with respect to
granting access to privileged operations for unprivileged (desktop)
applications.
Homepage: http://hal.freedesktop.org/docs/PolicyKit/
Original-Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>

Package: libwrap0
Status: install ok installed

再次执行apt-get install jenkins成功。

参考:http://blog.csdn.net/zfpnuc/article/details/4672317

Nginx端口解析问题

问题

使用搜索引擎时发现多域名多端口解析时,出现某域名端口错位访问的情况。
具体表现如下:

nginx解析问题

1
2
3
4
5
6
7
8
9
# 端口644是二级域名blog下的端口
server {
listen 644;
server_name xx-blog.gelu.me;
location / {
root /usr/share/nginx/blog;
index index.html;
}
}

根据上述配置应该只有xx-blog.gelu.me:644才能打开blog页面,然后事实并非如此。其他域名如gelu.me:644也会打开博客页面。

解决

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 在原server前加入该server即可
server {
listen 644;
server_name _; # 下划线可换成其他合法字符串
return 404; # 返回你想返回的
}

server {
listen 644;
server_name xx-blog.gelu.me;
location / {
root /usr/share/nginx/blog;
index index.html;
}
}

原因是nginx会先根据listen来确定server,只有当多个listen同时满足时,才会进一步检查server_name.当配置中一个listen只对应一个server时,server_name等于没写。

jasperreport中文显示问题

问题:jasperreport导出pdf中文显示异常
环境:Ubuntu 14.04

一、安装中文字体

Ubuntu安装中文字体

二、配置iReport

1、进入iReport目录 bin下,sudo ./iReport 运行程序。

2、打开Tools Options Fonts下,Install Font(按步骤安装)

ireport安装字体

3、在Tools Options Classpath下添加字体tff或直接添加Font文件夹

ireport添加classpath

4、重启后在设置对应组件的属性。Pdf Font name设为安装的好的中文字体,设置Pdf Encoding为Identity-H。

ireport设置字体属性

5、再次尝试导出中文成功

Swap Nodes in Pairs

Given a linked list, swap every two adjacent nodes and return its head.

For example,
Given 1->2->3->4, you should return the list as 2->1->4->3.

Your algorithm should use only constant space. You may not modify the values in the list, only nodes itself can be changed.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/
public class Solution {
public ListNode swapPairs(ListNode head) {
ListNode c = null;
ListNode n = null;
ListNode nn = null;
if(head==null){
return null;
}
if(head.next!=null){
nn = head.next;
}else{
return head;
}

c = head;
while(true){
if(c.next!=null){
n = c.next.next;
c.next.next=c;
if(n==null){
c.next=n;
}else if(n.next!=null){
c.next=n.next;
c = n;
continue;
}else{
c.next=n;
}
if(c.next==null)break;
c = c.next;
}else{
break;
}
}
return nn;
}
}

Symmetric Tree

Given a string s consists of upper/lower-case alphabets and empty space characters ‘ ‘, return the length of last word in the string.

If the last word does not exist, return 0.

Note: A word is defined as a character sequence consists of non-space characters only.

For example,
Given s = “Hello World”,
return 5.

1
2
3
4
5
6
7
8
9
10
//开始length(),trim忘加
public class Solution {
public int lengthOfLastWord(String s) {
if(s==null||"".equals(s)||s.trim().equals("")){
return 0;
}
String[] r=s.split(" ");
return r[r.length-1].length();
}
}

Ubuntu安装字体

安装

当前系统:Ubuntu 14.04

1
2
3
4
5
6
7
8
9
# 将字体font.ttf放至/usr/share/fonts下,可在该目录下自建文件夹分类字体
$ sudo cp font.ttf /usr/share/fonts

# 进入字体目录
$ cd /usr/share/fonts

# 刷新并安装字体
# 让系统识别该字体
$ sudo fc-cache -fv

修改系统字体

方法一:
在Ubuntu软件中心,安装Unity Tweak Tool。
打开该软件,选择 “字体”(“Fonts”),进行设置。

方法二:
另外,可以手动更新 /etc/fonts/fonts.conf 文件来修改系统字体(小心,不推荐)。

参考:Ubuntu 字体Wiki

Git使用小记(持续更新)

从story branch AAA中创建分支

1
2
# 将远程分支检出到本地分支
git checkout -b AAA--BBB origin/AAA #其中AAA为敏捷开发Story分支,BBB为Story下子任务,该命名方式为个人习惯

提交到本地仓库

1
git commit -m XXX  # XXX 为commit message

如果有创建新文件一般用IDE添加,也可使用命令

1
2
3
git add CCC # CCC为具体文件
# 或
git add . # 添加全部

push到远程仓库

1
git push

若功能完成则在gitlab上发起 merge request,目标分支为AAA, review通过以后合并之。

Accept Merge Request前通常会现在子分支AAA–BBB上merge AAA(命令如下),在子分支上解决完冲突再Accept Merge Request.

1
2
git fetch origin AAA # 更新本地分支
git merge AAA # 把AAA合并到当前分支,例如当前分支为AAA--BBB

命令:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#### 仓库相关
git init # 初始化 git 仓库
git clone http://XXXX/xx.git # clone的内容会放在当前目录下的xx目录

#### 操作
git checkout [branchname] # 检出切换分支
git remote add origin git@github.com:XXXX/xx.git # 设置仓库
git commit --amend -m "commit message." # 修补提交(修补最近一次的提交而不创建新的提交)
git pull # 获取远程版本库和本地进行合并
git branch # 查看分支
git tag # 查看分支
git status # 使用 git status 查看文件状态

#### 日志
git log # 查看提交信息
git log --pretty=oneline # 以整洁的单行形式显示提交信息
git log --stat # 查看提交信息及更新的文件

socks5转http代理

最近入职,使用的系统是Ubuntu,我新安装了sublime text,发现Package Control不Fan Qiang用不了了(以前好像不用Fan),而我平时使用的是shadowsocks,这用的是socks5代理,Package Control不支持(其他不少软件也都不支持),所以有了socks5转化为http代理的需求。

Polipo安装配置

1
2
$ sudo apt-get install polipo # ubuntu 下apt安装
$ sudo service polipo stop # 关闭

因为ss本地端口一般为1080,所以启动polipo并设置端口,可根据实际进行修改

1
$ polipo socksParentProxy=localhost:1080

也可直接找到 /etc/polipo/config 文件进行配置

1
socksParentProxy = "localhost:1080"

8123是polipo本地端口,可以在浏览器上打开 http://localhost:8123 查看polipo相关信息。

Sublime Text配置

编辑Package Control的用户配置

1
2
#在大括号内添加
"https_proxy": "localhost:8123"

配置完成

敏捷开发小记(持续更新)

7月11号正式入职,至今也有一个多月了,对新公司各方面都逐渐熟悉。从项目管理上来说,新公司使用敏捷开发控制项目,Sprint周期为3周,有多位Scrum Master,每个小组十几个人(包括开发和测试)。使用的工具是Jira+Confluence+GitLab。

一般在进入下一个Sprint周期的前一周,会对下个Sprint的若干Story进行分配安排,安排负责人及开发人员。Story是产品经理提出的需求或各方报的Bug,会根据实际情况分配到指定周期的Sprint下。Story负责人会对Story进行任务拆分、时间预估并分配到具体开发身上。基本每天都有10分钟左右的站会(我们组隔天一次),说一些完成的工作和安排一些工作。一个Sprint周期结束后还会有产品发行说明,并对新功能使用进行培训会议(并全程录制)。

Jira的看板、Log Work、图表可以方便清晰的管理项目。