#ed

记录一次(xheditor-1.1.6-zh-cn.min.js)的错误:Cannot read property 'match' of undefined的问题解决

由于使用了xheditor富文本框,且这个版本是2011年开发的系统,当时只有IE8,所以一切正常。但是问题来了,今天使用IE11测试和谷歌浏览器测试,发现一直报这个错误:且google了一下,没发现这个插件对应这个错误的解决方法。最后发现是和浏览器不兼容导致的,如果是使用IE,只要切换到兼容模式下运行就行了,goog...

Maven错误:“No goals have been specified for this build...”问题解决

如图出现如下错误:解决方法如下:1、(未测试)在pom.xml添加如下配置:<build><defaultGoal>compile</defaultGoal></build>2、直接在运行的命令行上加入://执行mvncleancompiletest//打包mvnclea...

Jenkins连接git时出现“Failed to connect to repository : Command ... HEAD" returned status code 128:”的问题解决

网上说的解决方法如下:其实生成ssh时不应该使用当前用户去生成ssh,而是使用jenkins这个用户去生成ssh,然后再去git服务器上配置你生成key,最后再jenkins上配置返回给你的key。参考:http://www.jianshu.com/p/ed0edb93e234http://stackoverflow....

Maven错误“Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.4:create ”解决

用maven3新建一个项目时,输入的命令如下:mvnarchetype:create出现错误如下:[ERROR]Failedtoexecutegoalorg.apache.maven.plugins:maven-archetype-plugin:2.4:create(default-cli)onprojectstand...

Mac下启动MySQL出现错误“the /usr/local/mysql/data directory is not owned by the 'mysql' or '_mysql' user”解决

错误如下:Warringthe/usr/local/mysql/datadirectoryisnotownedbythe'mysql'or'_mysql'user这应该是某种情况下导致/usr/local/mysql/data的宿主发生了改变。解决方法:终端输入:sudochown-Rmysql/usr/local/m...

Windows 10卸载Edge浏览器(不成功的别试了)

在命令行输入:PowerShelldir$env:LOCALAPPDATAPackages*edge*^|ren-newnameMicrosoftEdge.old;dir$env:windirSystemApps*edge*AppxManifest.xml^|Add-AppxPackage-DisableDevelop...

FreeMarker与Spring MVC 4结合错误:Caused by: java.lang.NoClassDefFoundError: org/springframework/ui/freemarker/FreeMarkerConfiguration

添加spring-context-support的依赖到POM:<!--spring-context-support--><!--https://mvnrepository.com/artifact/org.springframework/spring-context-support--><...

SiteMesh2-sitemesh.xml的PageDecoratorMapper映射器的用法

继上一章http://www.cnblogs.com/EasonJim/p/7083165.html中使用的例子中,是通过decorators.xml文件通过URL匹配进行转换的。而下面这种方法是通过sitemesh.xml的PageDecoratorMapper映射器来转换的,而无需匹配URL,只需在meta头指定d...

Spring Tool Suite(STS)启动时出现错误:Java was started but returned exit code=13问题解决

SpringToolSuite(STS)是开发Spring的套件,也就是一个Eclipse,在之上增加了对Spring框架的支持,使其能快速的开发Spring。错误如下:解决办法:如果系统安装的JDK版本是32位的,那么这个STS也必须是32位,反之,64位也是一样的道理。所以在下载回来的STS也必须保持一致。同样,在...

Ubuntu 16.04错误:The update information is outdated this may be caused by network...的问题解决

说明:这个问题没有最终的解决方案,只有不断的尝试。错误:Theupdateinformationisoutdatedthismaybecausedbynetworkproblemsorarepositorythatisnolongeravailablepleaseupdatemanuallybyselecting'sh...

com.101tec.ZKClient实现中的subscribeDataChanges设置的监听器事件不回调的问题研究

1、如果在Web项目,本身在后台运行,所以注册的事件应该是正常回调的。2、如果是Application项目,如果是简单的测试,那么运行完之后,整个程序就结束了,程序很快,所以没等到事件回调就关了,解决方法就是加个线程等待,让其在后台保持运行。 参考:https://segmentfault.com/q/101...

Spring Boot使用thymeleaf模板时报异常:template might not exist or might not be accessible by any of the configured Template Resolvers

错误如下:templatemightnotexistormightnotbeaccessiblebyanyoftheconfiguredTemplateResolvers解决方法:1、确定模板是否在默认templates文件夹里面,并且路径要和返回的View名字一致。2、newModelAndView("/log/lo...

Ubuntu 16.04安装网络流量监控工具Netspeed(附带10款最佳的指示器工具)

安装:sudoadd-apt-repositoryppa:ferramroberto/linuxfreedomlucidsudoapt-getupdatesudoapt-getinstallnetspeed然后通过这样的方式装你是找不到启动程序的,所以经过研究,这个只适合GNOME桌面使用,如果是Unity的需要安装以...

Spring Boot项目@RestController使用重定向redirect

SpringMVC项目中页面重定向一般使用return"redirect:/other/controller/";即可。而SpringBoot使用了@RestController注解,上述写法只能返回字符串,解决方法如下:将一个HttpServletResponse参数添加到处理程序方法然后调用response.sen...

MySQL出现no mycat database selected的问题分析

1、先抛开mycat来处理2、在查询表时,要指定是哪个数据库,然后再查询。①、如果再MySQLWorkbench中,先使用usetablename;,然后在执行操作语句;或者在语句上指定要查询表名时的数据库select*fromdb.tablename;。②、如果类似于连接字符串时,要指定具体是哪个库,这个应该和myc...
首页上一页...755756757758759...下一页尾页