#ed

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...
代码星球 ·2020-04-04

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...

Ubuntu 16.04安装QtCharts时报错:'qtConfig' is not a recognized test function.

错误:'qtConfig'isnotarecognizedtestfunction.解决方法:其实5.9分支的版本有问题,转成5.7分支即可。gitclonehttps://github.com/qtproject/qtcharts.gitcdqtchartsgitcheckout5.7qmakemakesudomak...

Spring Boot项目在Mac下使用Maven启动时碰到的神奇问题:Unregistering JMX-exposed beans on shutdown

错误如下:➜springboottest1mvnspring-boot:run[INFO]Scanningforprojects...[INFO][INFO]------------------------------------------------------------------------[INFO]Bui...

Spring Boot错误:Unable to start embedded container...的问题解决

解决方法:1、用错了注解,改用以下注解:@SpringBootApplication相当于:@Configuration、@ServletComponentScan、@EnableAutoConfiguration 参考:http://blog.csdn.net/zhang168/article/detail...
首页上一页...756757758759760...下一页尾页