- 浏览: 6948 次
- 性别:
- 来自: 北京
最新评论
文章列表
原文链接:
https://mp.weixin.qq.com/s?__biz=MzAwNjI5MTYyMw==&mid=2651494579&idx=1&sn=06e590e71ebf62f923785eed8b189c31&chksm=80f1917bb786186d003abe0ccf29014959e77836d1edf50486057847f51bebb928315b1a1f66&scene=0&key=8d037badb2e7b55bc87a5057184270afa07d1099e51b88f224206b01ba341ba9aec6 ...
安装 Eclipse 插件
安装 m2e 插件 (⚠️必须)
安装 startexplorer 插件。 http://basti1302.github.io/startexplorer/update/ (⚠️必须)
JAD eclipse plugin: http://jadclipse.sourceforge.net/update/ or http://jd.benow.ca/jd-eclipse/update (⚠️必须)
JAD: http://varaneckas.com/jad/
Checkstyle (http://eclipse-cs.sourceforge.net/update ...
Step 1: Update Homebrew
$ brew update
Step 2: Remove node/npm everywhere on your system
Some of these commands are not necessary depending on how you installed node/npm in the past.
$ brew uninstall npm
$ brew uninstall node
$ npm uninstall npm -g
$ sudo rm -rf /usr/local/lib/node_modules
Note: I ...
转载至:http://thoughtfly.iteye.com/blog/1485993
whereis <程序名称>
查找软件的安装路径
-b 只查找二进制文件
-m 只查找帮助文件
-s 只查找源代码
-u 排除指定类型文件
-f 只显示文件名
-B <目录> 在指定目录下查找二进制文件
-M <目录> 在指定目录下查找帮助文件
-S <目录> 在指定目录下查找源代码
locate <文件名称>
在文件索引数据库中搜索文件
-d <数据库路径> 搜索指定数据库
updatedb
更新文件索引数据库
find [路径] <表达式>
查找文件
-name <表达式> 根据文件名查找文 ...
freemarker数据格式化问题(即数值超过四位数时有逗号)
当数据超过3位的时候,freemarker会自动用逗号截取 格式如:2,008
如何解决呢?
1> 加.toString(),如:${(userId).toString()}
2> 加?c,如:${(userId)?c}
3> freemarker配置文件freemarker.properties加上number_format=#
判断是否为空:
1.<#if xx?exists>
2.<#if xx??>
3.<#if xx?default("xxx")>
...
其实网上有很多 myeclipse和flex整合的例子. 但我没看明白. 因为我是已经存在JAVA工程了, 在此基础上加一些flex功能. 所以把flex整合到java项目中. 我按照网上的例子配置了好长时间都失败了. 所以按照以下方式. 我觉得按照以下方式配置的话更容易理解. 希望能给同我一样经历的朋友些帮助.
需要配置的部分主要有以下几点:
1) .actionScriptProperties
2) .flexProperties
4) .project
5) web.xml
首先把创建flex后自动生成的两个文件 .actionScriptProperties 和 .flex ...