#ur

Maven错误 diamond operator is not supported in -source 1.5 (use -source 7 or higher to enable diamond operator)问题解决

如果在Maven构建时出现:diamondoperatorisnotsupportedin-source1.5(use-source7orhighertoenablediamondoperator)的错误,是由于使用了complier的插件版本为1.5导致的,因为在默认不配置情况下,Maven3默认为1.5,此时如果项...

Eclipse出现:An internal error occurred during: "Retrieving archetypes:". GC overhead limit exceeded的问题解决

网上说修改虚拟内存的方式,其实不太可行,最直接的方式就是删除以前的workspace,重新使用一个新的workspace。...

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出现错误No plugin found for prefix 'jetty' in the current project and in the plugin groups的问题解决

只需在maven的setting.xml文件上加入如下节点:<pluginGroups><pluginGroup>org.mortbay.jetty</pluginGroup></pluginGroups>setting.xml文件放在maven运行文件夹的conf文件夹...
代码星球 ·2020-04-04

Mac下常用按键符号⌘(command)、⌥(option)、⇧(shift)、⇪(caps lock)、⌃(control)、↩(return)、⌅(enter)

常用符号如下:⌘(command)⌥(option)⇧(shift)⇪(capslock)⌃(control)↩(return)⌅(enter)对应键盘的位置如下:如果每次都不记得,可以通过点击右上角的输入法图标,选择显示虚拟键盘即可: ...

asp.net获取URL方法

方法如下:Request.Url.ToString()获取完整url(协议名+域名+站点名+文件名+参数):https://localhost:44300/WebForm1.aspx?abc=123Request.RawUrl获取客户端请求的URL信息(不包括主机和端口):/WebForm1.aspx?abc=123R...
代码星球 ·2020-04-04

Java出现“Error configuring application listener of class...”类似的错误解决

错误如下:Errorconfiguringapplicationlistenerofclasscom.jsoft.jblog.listener.SessionListenerjava.lang.ClassNotFoundException:com.jsoft.jblog.listener.SessionListener...

Mac下配置git环境和客户端SourceTree+Git常用命令大全(Mac 10.12)

如果不想折腾,直接下载GitHub桌面端,高度集成git,不需要学习git的任何命令。https://desktop.github.com/1、上官网https://git-scm.com/download/mac下载2、安装打开下载回来的dmg文件,再打开pkg文件,进行一步一步看状安装完成。3、测试git命令行打开...

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

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出现:dpkg: 处理软件包 xxx (--configure)时出错:

如下所示:解决方法:#将info文件夹更名sudomv/var/lib/dpkg/info/var/lib/dpkg/info_old#再新建一个新的info文件夹sudomkdir/var/lib/dpkg/info#更新sudoapt-getupdatesudoapt-get-finstall#执行完上一步操作后会...

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,那么就直接右...

Spring MVC的@RequestMapping多个URL映射到同一个方法

@RequestMapping可以是一个URL对应一个方法,也可以多个URL对应同一个方法,写法如下:@RequestMapping(value={"url","resturl"})publicStringurl(){  return"url";} ...

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...
首页上一页...260261262263264...下一页尾页