- 浏览: 79269 次
- 性别:
- 来自: 上海
最新评论
-
timer_yin:
反了,应该是增加下面两个文件,打入hessian包。/META ...
hessian调用时BigDecimal值为0问题 -
snrqtdhuqf:
jis117 写道cxf.xml的内容是什么cxf.xml的内 ...
cxf简单配置,并运行helloworld -
jis117:
cxf.xml的内容是什么
cxf简单配置,并运行helloworld -
luoshengsha:
这有个很详细的教程:http://www.luoshengsh ...
spring3.2.2+mybatis3.2.3+c3p0项目整合 -
luoshengsha:
这有个很详细的教程:http://www.luoshengsh ...
spring3.2.2+mybatis3.2.3+c3p0项目整合
文章列表
Maven web项目启动问题
- 博客分类:
- Java
Maven web项目有的时候从svn导出的时候,Run As里面只有Java Applet,Java application。没有Run AS on Server。
解决方法是:
右键项目找到properties->Project Facets,选中Dynamic Web Module,Java,JavaScript。
在选中Dynamic Web Module配置Further configuration available…
Content directory内容为 src/main/webapp
如果Dynamic WEb Module是选中的话,去掉对钩, ...
java对象转json
- 博客分类:
- Java
pom中的依赖
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
< ...
android生成apk安装包
- 博客分类:
- android
下面是eclipse生成apk的两种方法,不过未签名的apk,在安装的时候出现“安装失败”的提示
I、只要Run As Android Application 过,到工作目录的bin文件夹下就能找到与项目同名的apk文件。
II、
A.选中项目,右键=》Andoid Tools=》Export Unsigned Application Package,直接保存,未签名的。
B.选中项目,右键=》Andoid Tools=》Export Signed Application Package,后面一步步的去做,签过名的。
android通过图片名称获取资源识别码
- 博客分类:
- android
一个小工具类
package com.listviewtest;
import android.content.Context;
/**
* 获取资源文件识别码
*/
public class IdentifierUtil {
public static int getIdentifier(Context context, String type, String payId) {
String packageName = context.getPackageName();
return context.getResources().getIden ...
MainActivity代码
package com.listviewtest;
import android.app.Activity;
import android.os.Bundle;
import android.widget.LinearLayout;
import android.widget.ListView;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onC ...
android获取手机号码以及imsi信息
- 博客分类:
- android
获取手机号码信息以及imsi信息,需要的权限为
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
package com.phoneinfotest;
import android.app.Activity;
import android.os.Bundle;
import android.telephony.TelephonyManager;
import android.view ...
android中activity的相互传值
- 博客分类:
- android
MainActivity代码
package com.myactivitytest;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup.LayoutParams;
import android.widget.Button;
import android.wid ...
EditText自定义
- 博客分类:
- android
设置边框的宽度为2,当文本框获取焦点时和没获取焦点的边框颜色不一样
canvas.drawRect(...)是一个长方形
canvas.drawRoundRect(...)是一个带圆弧的长方形
package com.newedittext.ui;
import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics. ...
模仿书上的例子,用代码来写,主要代码如下:
package com.todolist;
import java.util.ArrayList;
import android.os.Bundle;
import android.app.Activity;
import android.view.KeyEvent;
import android.view.Menu;
import android.view.View;
import android.view.View.OnKeyListener;
import android.view.ViewGroup.LayoutPa ...
读《在你身边,为你设计》摘抄
- 博客分类:
- 摘抄
善用草图来进行设计探索。
草图是表达设计思维的一种核心工具。不用过于追求草图的精美和流畅,相反,草图应该具有一定的模糊性和不确定性,应该紧跟思维的运转;在模糊和不确定中,有助于发现新的方向,带来新的思路,这也是草图最重要的目的。这点任何电脑辅助设计软件斗不具有的优势。
好的用户体验和成功的创新设计,都是从深入了解所要解决的问题和其所处的环境开始的。
保证内容可被感知
保证内容中组件的可操作性
保证内容是可被理解的
我们是要设计一个符合用户情感的食物?还是把这个事物设计成一个能让用户投入情感的容器?
设计的产品是否能让用户产生情感的寄托;设计的创新是否超出 ...
linux下mysql 安装
- 博客分类:
- 数据库
shell> groupadd mysql
shell> useradd -r -g mysql mysql
shell> cd /usr/local
shell> tar zxvf /path/to/mysql-VERSION-OS.tar.gz
shell> ln -s full-path-to-mysql-VERSION-OS mysql
shell> cd mysql
shell> chown -R mysql .
shell> chgrp -R mysql .
shell> scripts/mysql_instal ...
eclipse中python的配置
- 博客分类:
- python
心血来潮,进行了python的配置,并编写了python语言的hello.
在网上找了很多资料,都是不全的,好不容易找到一篇,然后自己做了次实验,配置成功,做个记录。
首先需要安装python环境,我的操作系统是cent os6.4的,安装的时候就自带了python。输入命令查看是python2.6.6.能用就行,懒得去换了。
去eclipse.org下载个eclipse。我的版本是Eclipse Standard 4.3.
启动eclipse,选择help->install new sofeware
获取spring IoC容器(Factory)
- 博客分类:
- Java
使用DefaultListableBeanFactory获取IoC容器
package factory;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
import org.springframework.beans.factory.xml.XmlBeanDefinitionReader;
import org.springframework.core.io.ClassPathResource;
import com.yydone.ma.se ...
通过ClassPathXmlApplicationContext获取
package factory;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.yydone.ma.service.IMemberService;
import com.yydone.ma.service.impl.MemberService;
...
在搭建项目之前,创建数据库,以及数据库表,我用的数据库是mysql 5.6.11
创建数据库语句为:
CREATE TABLE `orders` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`company_id` varchar(255) DEFAULT NULL,
`charge` decimal(18,4) NOT NULL DEFAULT '0.0000',
`state` int(11) DEFAULT '0',
`remark` varchar(500) DEFAULT NULL,
PRIMARY K ...