- 浏览: 99970 次
最新评论
-
hylxinlang:
噢,又涨见识了
B/S实现IC卡读卡 -
yizhaorong:
hylxinlang 写道javascript串口通信appl ...
B/S实现IC卡读卡 -
yizhaorong:
hylxinlang 写道b/s放在服务端是不行的吧,应该使用 ...
B/S实现IC卡读卡 -
hylxinlang:
b/s放在服务端是不行的吧,应该使用javascript来读写 ...
B/S实现IC卡读卡 -
hylxinlang:
javascript串口通信
B/S实现IC卡读卡
文章列表
本例以SSH(spring+hibernate+springMVC)为例,项目结构如下
四层分别为model,dao,service,web。测试maven打包后注解是否可用,实例证实是可用的。
相关代码已上传
CentOS安装gitHub
- 博客分类:
- linux
centos 安装github1. 安装git工具 yum install git 2. 查看git版本 git --version 3. 查看git状态 git status4. 全局账户配置: git config --global user.name "github账户名" git config --global user.email "github注册邮箱"5.创建本地数据仓库(repository)cd /homemkdir GitRepositorycd GitRep ...
在eclipse.ini中添加
-vm/usr/local/java-8-sun/bin/java
手动指定java路径即可
jquery将表单序列化为json对象
- 博客分类:
- js
// 将指定表单序列化为对象
serialize2Object : function(id) {
id="#"+id;
var o = {};
$.each($(id).serializeArray(), function(index) {
if (o[this['name']]) {
o[this['name']] = o[this['name']] + "," + this['value'];
} else {
o[this['name']] = this['value'];
}
...
JAVA XML解析技术
- 博客分类:
- XML
DOM解析方式:
@Test
public void DOMTest() {
try {
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(XML4JAVA.class.getClassLoader().getResourceAsStream(
"context.xml ...
项目结构如下:
parent
user(web)
user_client(web)
在parent中的pom.xml文件中添加以下代码
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<configuration>
<!--每10秒扫描一次pom文件 -->
<scanIntervalSeconds>10& ...
MyEclipse中MAVEN父子项目
- 博客分类:
- maven
创建父项目
直接创建一个普通Maven项目,打开pom文件,通过MyEclipse的默认的开pom文件的方式,将打包方式改为pom,保存。
创建子项目
将打包方式改为pom方式并保存后,左下方出现可以增加子模块的功能,点create创建即可。
修改父项目结构
将父项目中的src目录删除,并删除properties中的相关源码目录和所依赖的lib,将父类的dependencies的外层包一个dependenciesManager,用于管理项目中所依赖的包
maven发布webservice时错误解决
- 博客分类:
- maven
错误: 程序包com.sun.xml.internal.ws.api.message不存在
错误: 程序包com.sun.xml.internal.ws.api.message不存在
错误: 程序包com.sun.xml.internal.ws.developer不存在
[ERROR] 符号: 类 HeaderList
解决方法
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</a ...
struts2注解配置简单实例
- 博客分类:
- struts2
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.3//EN"
"http://struts.apache.org/dtds/struts-2.3.dtd">
<struts>
<!-- 所有匹配*.action的请求都由struts2处理 -->
& ...
maven和nexus结合使用
- 博客分类:
- maven
安装完neuxs后,下载maven,本例使用的是3.1.1版本
下载好后解压到当前文件夹,重命名为maven
本例maven环境是在windows下的。
添加环境变量MAVEN_HOME=E:\maven
修改环境变量PATH,在末尾添加%MAVEN_HOME%\bin;
检测maven是否安装完成,打开命令行。mvn -version查看版本,如版本显示正确安装成功
为eclipse指定外部maven,打开eclipse->window->preferences->maven->installations->add
添加你的maven目录
wi ...
首先下载jad和jadclipse
将下载好的jad.exe放到JDK安装目录的bin当中,这样可以避免配置PATH,当然也可以放在PATH中的其它路径中。
在MyEclipse的安装目录中dropins中新建目录jad,在jad中新建plugins和features,并将jadclipse放入plugins中,重启MyEclipse。
查看安装情况:Window->Preferences->Java,看到里面有Jadclipse表示安装完成,点击jadclipse,可以设置编译好的文件的缓存路径。
通过以上配置,MyEclipse就可以点击class文件查看源码了。
jackson将json转为bean
- 博客分类:
- jackson
ObjectMapper mapper = new ObjectMapper();
if (mapping != null) {
try {
UserPictureBo o = new UserPictureBo();
if (mapping.getUserPictuerText() != null) {
o = mapper.readValue(mapping.getUserPictuerText(), UserPictureBo.class);
}
BeanUtils.copyProperties(o, userPictur ...
sys@orcl as sysdba
建表空间和用户参照下面文章
http://gang-chen.iteye.com/blog/1974261
导入时:
imp MYDB_USER/MYDB_PWD@orcl file=/MYDB.dmp fromuser=u1 touser=u2;
模块标识
模块标识是一个字符串,用来标识模块。在 require、 require.async 等加载函数中,第一个参数都是模块标识。
Sea.js 中的模块标识是 CommonJS 模块标识 的超集:
一个模块标识由斜线(/)分隔的多项组成。
每一项必须是小驼峰字符串、
Linux关闭防火墙
- 博客分类:
- linux
chkconfig iptables off 关闭
chkconfig iptables on 开启
chkconfig iptables --level 345 off 在运行级别345关闭防火墙
chkconfig --list |grep iptables 查看各级别防火墙的运行状态
service iptables stop 关闭防火墙(重启失效)
service iptables start 开启防火墙(重启失效)