摘要:
在一个项目中发现spring的事务无法回滚。DEBUG: org.mybatis.spring.SqlSessionUtils - SqlSession [org.apache.ibatis.session.defaults.DefaultSqlSession@49f9ce55] was not r... 阅读全文
摘要:
ListView中使用type需要注意的东西在使用ListView时,如果使用了getItemViewType, 记得他的值一定要是从0开始计数的。 且要覆盖getViewTypeCount方法。并且让getViewTypeCount>getItemViewType否则会有数组越界异常:10-21 ... 阅读全文
摘要:
今天在用maven的时候遇到一个问题pom.xml提示Missing artifact com.sun:tools:jar:1.5.0试过改eclipse的eclipse.ini文件,也试过在eclipse中改Installed JREs都不行。后来google到这篇文章,就把问题解决了。http://www.myexception.cn/system/1177046.htmlpom.xml文件前边有个红叉,提示Missing artifact com.sun:tools:jar:1.5.0:system解决办法:添加D:\Program Files\Java\jdk1.6.0_26\bin\ 阅读全文
摘要:
1.加载url前,设置图片阻塞Java代码webSettings.setBlockNetworkImage(true);2.加载完毕后,关闭图片阻塞Java代码publicvoidonPageFinished(WebViewview,Stringurl){webSettings.setBlockNetworkImage(false);super.onPageFinished(view,url);}转自:http://news.wangmeng.cn/detailNews/2866 阅读全文
摘要:
前言ormlite数据库默认放在databases下,有时候可能需要使用预置好数据的数据库,可能就需要更改默认路径了。正文1、继承OrmLiteSqliteOpenHelper: 1 2 3 4 5 6 7 8 91011121314public class SQLiteHelperOrm extends OrmLiteSqliteOpenHelper { public static final String DATABASE_PATH = Environment .getExternalStorageDirectory() + "/test.db"; ... 阅读全文
摘要:
URLPath匹配原则路 径匹配原则(Path Matching) Spring MVC中的路径匹配要比标准的web.xml要灵活的多。默认的策略实现了 org.springframework.util.AntPathMatcher,就像名字提示的那样,路径模式是使用了Apache Ant的样式路径,Apache Ant样式的路径有三种通配符匹配方法(在下面的表格中列出)这些可以组合出很多种灵活的路径模式Table Ant Wildcard CharactersWildcardDescription?匹配任何单字符*匹配0或者任意数量的字符**匹配0或者更多的目录Table Example A 阅读全文
摘要:
在调用使用axis1.4生成的webService时,老是报题目中的那个异常,但调用还是能通过,但看着还是让人不爽,也不知道会不会有什么隐 患,在网上搜了大概是axis中自己的问题,解决的方法就是把log4j中日志的级别打高一点,由于E文水平有限,下面是问题解释的原文[plain] view plaincopyHi,Notsureifyougotyouanswerasyetbutanyhow,Ithoughtbelowdetailswouldhelpallfolkswhoarehavingsameproblem.ThisisloggedbecausethiscodeinAxisEngine(l 阅读全文
摘要:
<script> function getInfo() { var s = ""; s += " 网页可见区域宽:"+ document.body.clientWidth; s += " 网页可见区域高:"+ document.body.clientHeight; s += " 网页可见区域宽:"+ document.body.offsetWidth + " (包括边线和滚动条的宽)"; s += " 网页可见区域高:"+ document.body.offset 阅读全文
摘要:
/** * post json格式的数据 * @param requestUrl * @param data * @param getReutrn * @return */ public static String postJsonData(String requestUrl, String data,boolean getReutrn){ String sTotalString = ""; try{ URL url = new URL(requestUrl); Ht... 阅读全文