- 浏览: 60636 次
- 性别:
- 来自: 深圳
最新评论
-
hheuii:
咱们犯的错误一样,看报错真难找
Ibatis报错:Error parsing XPath '/sqlMap/insert'. Cause: java.util.NoSuchElementEx -
shencaifeixia:
不错,正迷茫着呢
Opengles之glRotatef()函数解析 -
wh176781788:
写的不错
OSGi动态化深入分析 -
lattimore:
这里说明的很详细:
http://www.developer. ...
Android UI背景图片之NinePatch图片
文章列表
JGroups的可靠性保证
- 博客分类:
- jgroups
Jgroups的传输协议有UDP、TCP 等,在这些传输协议上,为可靠性提供了UNICAST、UNICAST2、UNICAST3、pbcast.NAKACK、pbcast.NAKACK2五种自定义协议,其中前三种用于点对点传输,后两种用于多播。下边来看下其如何做到可靠性保证:
1. UNICAST: 主动重发、逐个确认,有如下3个步骤:
A B
1): |-------------sen ...
OSGI IEMP
1. 分布式: 原生OSGI不支持分布式服务调用 天生拥有两条分布式的服务总线:RPC服务总线和ROA服务总线。
2. 可兼容: 一切只能是Bundle,不能直接使用非Bundle包 基于OSGI拥有OSGI所有能力,同时可兼容一切非Bundle包。
3. 低解耦: 使用Bundle划分业务的粒度还是太细, 更大粒度的业务划分:app,app使用GAPI解决静态依赖,通 ...
Maven+Eclipse 中使用tomcat
- 博客分类:
- Maven
<build>
<plugins><!-- -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>tomcat-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<configuration>
<url>http://localhost/manage ...
http://download.oracle.com/docs/cd/E17802_01/webservices/webservices/docs/2.0/tutorial/doc/index.html
http://hi.baidu.com/caiway/blog/item/2093d3ecb10f524778f055b8.html/cmtid/3f8f1ed0350066329b5027c6
http://blog.csdn.net/crazycoder2010/article/details/6652401
http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/
1. 使用loaderFilter函数过滤grid返回的json数据:
grid能接受的json数据格式:
{
"total":239,
"rows":[
{"code":" ...
官方doc地址:https://www.ebayopensource.org/wiki/display/TURMERICDOC/Configuring+a+Service+for+Full+REST+Access
按照上边的方法配置,但总提示说找不到页面,火大啦。
最后冷静下来想想,原来是web.xml配置SPFServlet地址有问题:
eclipse plugin默认生成的是:
<servlet-mapping>
<servlet-name>MyDemoServiceV1</servlet-name>
...
ebay turmeric使用问题汇总
- 博客分类:
- Turmeric
1.eclipse 插件有问题:生成的GlobalServiceConfig.xml下的<monitor-config>应该改为:
<monitor-config>
<storage-provider name="DAOMetricsStorageProvider">
<class-name>org.ebayopensource.turmeric.monitoring.storage.DAOMetricsStorageProvider
</class-name>
<stor ...
1.eclipse导出bundle时,在工程根目录下的文件(xml)没有导出,这个太严重啦,导致struts.xml找不到,还要手工添加,有没有什么好办法???
转载自http://www.ibm.com/developerworks/cn/web/1007_shaobing_flexosgi/index.html?ca=drs-
这篇文章的项目会有两个问题:
1. 报错velocity......的异常,因为缺少了velocity-tools-1.3.jar 包。
2. 如果无法上网时解析struts.xml会报错,请修改src下的struts. ...
OSGi动态化深入分析
- 博客分类:
- OSGI
OSGi最吸引人的特性除了模块化之外,就是动态化了,在我之前写的OSGi实战以及进阶两篇Opendoc中,都有相关的示例,但不知道大家有没有注意,在两篇Opendoc中都未提及到bundle本身的更新,而基本都是以新增服务实现的bundle以及停 ...
使用命名空间,如<sqlMap namespace="srv_users"> 时,一定要在 sqlmap-config.xml 中 <settings >中添加 useStatementNamespaces="true" 如:
<settings cacheModelsEnabled="false" enhancementEnabled="false" maxSessions="64" maxTransactions="8" maxRe ...
发生这种错误一般是因为SQL写法不合理造成的。如:参数大小写,参数没用#闭合等。
举例:
insert into srv_users(imsi,marketid,phn,scrw,scrh,gwid,prov_code,city,money) values(#imsi#,#marketid,#phn#,#machineWidth#,#machineHeight#,#gwid#,#provinceCode#,#city#,#money#)
红色的应该写成:#marketid# 少了一个#号
1. <property name="packagesToScan" value="com.xxx.entity" />, 会解析成"classpath*:com/xxx/entity**/*.class",这个路径可以找出com/xxx/entity根目录下的类文件 2. <property name="packagesToScan" value="com.xxx.entity.*" />, 会解析成"classpath*:com/xxx/enti ...