#was

记录一次eclipse的错误:“server tomcat v7.0 server at localhost was unable to start within 45 seconds”的问题解决思路

如果配到上述问题,可以参考网上查找的方法,如下:http://stackoverflow.com/questions/6468520/server-tomcat-v6-0-server-at-localhost-was-unable-to-start-within-45-secondshttp://fanshuyao....

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

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

VMware 12安装CentOS 6.9时出现:The centos disc was not found in any of your drives.Please insert the centos disc and press OK to retry

错误:Thecentosdiscwasnotfoundinanyofyourdrives.PleaseinsertthecentosdiscandpressOKtoretry原因:由于使用的是VM,然后使用了光盘检测功能导致了光驱的状态断连了。解决方法:主要在一开始安装时,如下选择即可:如果不幸选择了OK,那么就直接右...

Windows基础-使用XAudio2播放音频(本质是WASAPI)

对于常见的音频播放,使用XAudio2足够了。早在WindowsVista中,M$推出了新的音频架构UAA,其中的CoreAudio接替了DSound、WaveXxx、MediaFundation,通过CoreAudioAPIs,Windows的音频性能可以与MacOSX相媲美(手动偷笑)。CoreAudio属于UAA...

解决 An invalid domain was specified for this cookie

在tomcat的conf文件下的context.xml中加入<CookieProcessorclassName="org.apache.tomcat.util.http.LegacyCookieProcessor"/>  然后重启tomcat即可如图 ...

C# Thread was being aborted

先重现问题1、新建一个aspx页面项目,插入两个页面WebForm1.aspx,WebForm2.aspx,WebForm1代码修改如下protectedvoidPage_Load(objectsender,EventArgse){try{Response.Redirect("WebForm2.aspx");}catc...
代码星球 ·2020-04-01

error: ‘to_string’ was not declared in this scope

错误:error:‘to_string’wasnotdeclaredinthisscope 原因:to_string是C++11引入的新功能,旧版本编译器可能不支持它,所以要给编译器加上“C++11”编译支持 解决方案:Linux下的GCC编译器:在g...
代码星球 ·2020-03-29

vue-loader was used without the corresponding plugin. Make sure to include VueLoaderPlugin

场景:.webpack2.4.*集成vue-loader@15.7.2报错原因:参考官方文档https://vue-loader.vuejs.org/migrating.html#a-plugin-is-now-requiredVue-loader在15.*之后的版本都是vue-loader的使用都是需要伴生VueLo...

The view 'Index' or its master was not found.

Global.asaxfilecontaintheURLRoute.DefaultURLroutelikethis."{controller}/{action}/{id}"So,Trythis.1.Rightclickyourcontrollermethodasbelow.Example:letsaywecallInd...

【laravel5.4】php artisan migrate报错:Specified key was too long; max key length is 767 bytes

1、原因:在进行迁移文件生成时,程序并未给varchar类型字段设置合适的长度,导致报错。2、解决办法:找到database/目标迁移文件,修改其中类型为string的字段长度,建议不要超过255,否则报错【然后再次运行phpartisanmigrate即可成功】 示例: MySQL:ERROR10...
首页上一页...1213141516下一页尾页