#PA

Eclipse删除switch workspace下多余的workspace

第一步:修改org.eclipse.ui.ide.prefs文件打开Eclipse目录的configuration.settings目录,找到org.eclipse.ui.ide.prefs文件,将不需要的workspace的路径删除。第二步:重启Eclipse     ...

Viewpager+Fragment出现空白页面的问题

写了三个Fragment,一次点击跳转显示正常,如果从第一个直接跳转到第三个,第三个页面会出现空白界面。问题找到了:原来动态获取数据页面数据不显示,页面显示空白,就是onCreateView每次都调用导致的,这样fragment每次都会设置新的view,而调试发现,之前的view并没有被回收…&helli...

ListView onItemClick(AdapterView<?> parent, View view, int position, long id)参数详解

publicvoidonItemClick(AdapterView<?>parent,Viewview,intposition,longid){parent.getAdapter().getItem(position);(CircleImageView)view.findViewById(R.id.img_...

Fragment里面的ViewPager嵌套subFragment,主Fragment切换的时候subFragment出现空白Fragment的Bug

Fragment第二次进入不显示,主要是第二次加载的时候重复调用了onCreateView()这个方法,重新new了一个pageadapter导致子fragment不显示,问题的解决方法就是在onCreateView()方法里面加入如下代码@OverridepublicViewonCreateView(LayoutIn...

java.lang.IllegalStateException: You need to use a theme.appcompat theme (or descendant) with this activity

错误描述:java.lang.IllegalStateException:Youneedtouseatheme.appcompattheme(ordescendant)withthisactivity产生原因:Activity继承自AppCompatActivity,在style.xml中使用了不兼容的Theme。从错...

webpack中tree-shaking技术介绍

之前介绍过webpack3的新特性,里面提到webpack2支持了ES6的import和export,不需要将ES6的模块先转成CommonJS模块,然后再进行打包处理。正基于此,webpack2引入了tree-shaking技术,能够在模块的层面上做到打包后的代码只包含被引用并被执行的模块,而不被引用或不被执行的模块...

Required MultipartFile parameter 'file' is not present

在写一个api的接口时,需要调用者上传文件,类型为:MultipartFile。我在使用postman测试时,服务器报错:具体的错误信息为:HTTPStatus400-RequiredMultipartFileparameter'files'isnotpresenttypeStatusreportmessageRequ...

ASM ClassReader failed to parse class file

在照着这里例子学习ssm时,在部署阶段遇到了这个问题“ASMClassReaderfailedtoparseclassfile-probablyduetoanewJavaclassfileversionthatisn'tsupportedyet”结合例子里的博主说java的版本不要用太高的,怕兼...

java.lang.ClassNotFoundException: org.springframework.web.servlet.DispatcherServlet

今天朋友发了个maven项目给我看,问我为什么启动不了。说实话,一直用Jfinal都快不会用spring了…还是决定看看。接收了文件,是maven构建的,打开eclipse,导入maven项目,然后部署到tomcat,启动tomcat,就报错了:“java.lang.ClassNotFound...

解决pandas中打印DataFrame行列显示不全的问题

在使用pandas的DataFrame打印时,如果表太长或者太宽会自动只给前后一些行列,但有时候因为一些需要,可能想看到所有的行列。所以只需要加一下的代码就行了。  #显示所有列pd.set_option('display.max_columns',None)#显示所有行pd.set_option(...

Linux(环境篇):系统搭建本地FTP后,无法登录(331 Please specify the password.)问题解决

  首先Linux搭建ftp,开放21端口。(省略。。。)你可能会遇到以下问题:错误SELinuxisdisabled解决:setenforce:SELinuxisdisabled那么说明selinux已经被彻底的关闭了如果需要重新开启selinux,请按下面步骤:vi/etc/selinux/co...

完美解决: org.apache.ibatis.binding.BindingException Invalid bound statement (not found)

异常描述:org.apache.ibatis.binding.BindingException:Invalidboundstatement(notfound)原因:springboot整合mybatis,在编译时,如果不添加此节点mybatis的mapper.xml文件都会被漏掉,即只会生成mapper对应的class...

Cannot start compilation: the output path is not specified for module "salesystem". Specify the output path in Configure Project.

错误是发生在从github上checkout自己的项目时。因为没有将配置文件一起上传,所以在运行java程序时有了这个报错:Cannotstartcompilation:theoutputpathisnotspecifiedformodule“Test”.Specifytheoutputpath...

项目启动报错org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.wuhongyu.mapper.OrdersMapper.selectByExample

在用maven配置mybatis环境时出现此BindingExceptiony异常,发现在classes文件下没有mapper配置文件,应该是maven项目没有扫描到mapper包下的xml文件, 在pom.xml中加入一下代码可以解决:<build><resources><!-...

org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19

启动项目报错:org.apache.tomcat.util.bcel.classfile.ClassFormatException: Invalid byte tag in constant pool: 19原因是tomcat的版本太低了,改成9就可...
首页上一页...364365366367368...下一页尾页