错误问题
壮飞
不断奋斗的码农
展开
-
安卓开发环境ADT报错:adt版本低于sdk版本,请升级
一、解决方法 我们通过更改sdk的配置文件把当前版本号改成和adt版本一致,这样就不需要下载新的adt了。 1.找到sdk所在的目录 我的sdk目录是 D:\android\adt-bundle-windows-x86_64-20140321\sdk 2.在tools/lib目录下找plugin.prop文件 3.将该文件修改为如下格式,22.6.2是我的adt的版本号,只要将其修改为和a原创 2017-07-16 21:31:33 · 532 阅读 · 0 评论 -
Spring:Looks like the Spring listener was not configured for your web app!
1.Spring整合Struts2:配置文件问题 在Spring整合Struts2时出现的一个问题,其实Log的前几句已经告诉我们错误的原因了,因为忘记在web.xml配置文件中没有配置Spring Listener,当我们配置了ConextLoaderListener后,该监听器会在创建时自动查找WEB-INF/路径下applicationContext.xml文件,所以除了配置该ConextL原创 2017-08-01 21:43:06 · 1073 阅读 · 0 评论 -
Spring:SAXParseException
1.异常Exception in thread "main" org.springframework.beans.factory.xml.XmlBeanDefinitionStoreException: Line 71 in XML document from class path resource [beans.xml] is invalid; nested exception is org.xm原创 2017-08-01 19:13:55 · 553 阅读 · 0 评论 -
Spring:BeanNotOfRequiredTypeException
1.异常详情Exception in thread "main" org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named 'helloImpl' must be of type [cn.lzf.bean.HelloImpl], but was actually of type [com.sun.prox原创 2017-08-01 10:16:10 · 7353 阅读 · 0 评论 -
Spring:myeclipse的xml文件验证过慢
1.问题在使用Spring框架的时候,myeclipse加载配置文件beans.xml时会一直验证xml文件(超慢),解决这个问题也很简单,只需要关闭在build时对xml文件的校验就可以了。2.步骤Windows 》 preferences 》Validation ,点击Validation,将XML对应着的Build选择框取消掉就可以了,最后需要重启myeclipse,运行一下速度就很快了。原创 2017-07-27 18:48:26 · 1898 阅读 · 0 评论 -
Struts2:Action not found
1.问题 今天遇到了一个奇怪的问题,写了一个简单的LoginAction,在struts.xml配置文件中配置了LoginAction。 配置片段如下,很简单的代码,一点错误都没有,但一直提示找不到那个Action类<!-- 登录Action --><action name="loginAction" class="cn.lzf.action.LoginAction"> <result原创 2017-08-02 20:27:27 · 939 阅读 · 0 评论 -
Hibernate开发中的异常:could not initialize proxy - no Session
一、异常内容could not initialize proxy - no Session二、异常原因分析首先在我的持久化类User中有如下片段://User.java@Entity@Table(name = "user_inf")public class User { //用户的订单信息 @OneToMany(targetEntity=Order.class,mappedBy原创 2017-08-12 16:23:13 · 429 阅读 · 0 评论 -
SSH整合开发之异常:No Session found for current thread
一、异常org.hibernate.HibernateException: No Session found for current thread at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:106) at org.hiber原创 2017-08-11 14:46:44 · 352 阅读 · 0 评论