在对程序进行了一些修改后,运行发现spring报了这个错误,这是由于我设置了一个@Scope("session")导致的,现记录下解决方法. 解决方法: 将Scope设置为scope="session"需要在web.xml中做一下设置打开session机制: <!-- 开启Session机制 --><listener> <listener-class>org.springframework.web.context.request.…
Unable to instantiate Action, getUserAction, defined for 'getUser' in namespace '/'Error creating bean with name 'getUserAction': Scope 'request' is not  active for the current thread; consider defining a scoped proxy for this bean if you intend to r…
报错: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull() for details git pull <remote> <branch> If you wish to set tracking information for this branch you can do so with:…
1. 报错提示 Formatting the name directories of the current NameNode. If the name directories are not empty, this is expected to fail. 2. 问题原因 之前的namenode格式化了,所以这次不能格式化,需要把原来格式化的删除. 3. 解决方法 1)在/dfs目录下有dn或者nn [root@hadoop101 dfs]# ls /dfs/ nn snn 删除三台机器(所有…
新建本地分支后将本地分支推送到远程库, 使用git pull 或者 git push 的时候报错gitThere is no tracking information for the current branch.Please specify which branch you want to merge with.See git-pull(1) for details    git pull <remote> <branch>If you wish to set tracking…
论坛上有另外一篇更全面的帖子,jinnianshilongnian写的:http://www.iteye.com/topic/1120924 本文的环境是:  spring-framework-3.1.0  hibernate-4.1.6  junit-4.10  这里大部分是参考我以前熟悉的配置方法,只是把hibernate3升级到hibernate4,其实差不了很多,只要注意几个要点:  1.以前集成hibernate3和spring的时候,spring的ORM包里提供了HibernateS…
今天配置spring,遇到各种报错的问题,做一个小小总结. 1.刚开始我忘了引入commons-logging,报错.--解决方式:下载并引入该jar包 2.spring以及commons-logging的jar包下载并buildpath了,编译正常,运行报错.--解决方式:把jar包在项目lib文件夹下拷贝一份,再buildpath就可. ******其他路径的jar包((如:放桌面的jar包))buildpath是无效的,一点要真正拷贝到项目lib文件夹中.--切记***** -------…
一. java.lang.ClassNotFoundException: org.springframework.web.filter.CharacterEncodingFilter 解决方案: 1.看WEB-INF下面有没有lib,没有就自己创建一个 2.右键改工程,选择properties 3.再选择Deployment Assembly 4.点击add 5.选择Java Build Path Entries后点击next 6.选择Maven Dependencies后点击finish 7.…
报错信息:Session has not been configured for this application or request 解决方案:在Startup.cs文件中的Configure方法中加上这一句代码: app.UseSession(); 进行注册即可.…
一般在遇到这个问题的时候都是想用git或者svn,结果发现用不了并报错xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun 解决方法 重新安装xcode 命令: xcode-select --install 看到图片 安装完成后就ok…