51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#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,此时如果项...
代码星球
·
2020-04-04
diamond
operator
-source
Maven
错误
Eclipse出现:An internal error occurred during: "Retrieving archetypes:". GC overhead limit exceeded的问题解决
网上说修改虚拟内存的方式,其实不太可行,最直接的方式就是删除以前的workspace,重新使用一个新的workspace。...
代码星球
·
2020-04-04
Eclipse
出现
An
internal
error
asp.net站点从2003服务器迁移到2008服务器出现定义了重复的“system.web.extensions/scripting/scriptResourceHandler”节的问题解决
解决方法:1、从4.0降到2.0。2、直接删除整个节点,如下: ...
代码星球
·
2020-04-04
服务器
asp.net
站点
2003
移到
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....
代码星球
·
2020-04-04
to
Jenkins
连接
git
出现
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
plugin
in
the
Maven
出现
Mac下常用按键符号⌘(command)、⌥(option)、⇧(shift)、⇪(caps lock)、⌃(control)、↩(return)、⌅(enter)
常用符号如下:⌘(command)⌥(option)⇧(shift)⇪(capslock)⌃(control)↩(return)⌅(enter)对应键盘的位置如下:如果每次都不记得,可以通过点击右上角的输入法图标,选择显示虚拟键盘即可: ...
代码星球
·
2020-04-04
Mac
常用
按键
符号
command
asp.net获取URL方法
方法如下:Request.Url.ToString()获取完整url(协议名+域名+站点名+文件名+参数):https://localhost:44300/WebForm1.aspx?abc=123Request.RawUrl获取客户端请求的URL信息(不包括主机和端口):/WebForm1.aspx?abc=123R...
代码星球
·
2020-04-04
asp.net
获取
URL
方法
Java出现“Error configuring application listener of class...”类似的错误解决
错误如下:Errorconfiguringapplicationlistenerofclasscom.jsoft.jblog.listener.SessionListenerjava.lang.ClassNotFoundException:com.jsoft.jblog.listener.SessionListener...
代码星球
·
2020-04-04
Java
出现
Error
configuring
application
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命令行打开...
代码星球
·
2020-04-04
Mac
配置
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--><...
代码星球
·
2020-04-04
FreeMarker
Spring
MVC
结合
错误
Spring Tool Suite(STS)启动时出现错误:Java was started but returned exit code=13问题解决
SpringToolSuite(STS)是开发Spring的套件,也就是一个Eclipse,在之上增加了对Spring框架的支持,使其能快速的开发Spring。错误如下:解决办法:如果系统安装的JDK版本是32位的,那么这个STS也必须是32位,反之,64位也是一样的道理。所以在下载回来的STS也必须保持一致。同样,在...
代码星球
·
2020-04-04
Spring
Tool
Suite
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#执行完上一步操作后会...
代码星球
·
2020-04-04
Ubuntu
16.04出现
dpkg
处理
软件包
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,那么就直接右...
代码星球
·
2020-04-04
centos
disc
VMware
安装
CentOS
Spring MVC的@RequestMapping多个URL映射到同一个方法
@RequestMapping可以是一个URL对应一个方法,也可以多个URL对应同一个方法,写法如下:@RequestMapping(value={"url","resturl"})publicStringurl(){ return"url";} ...
代码星球
·
2020-04-04
Spring
MVC
@RequestMapping
多个
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...
代码星球
·
2020-04-04
might
not
Spring
Boot
使用
首页
上一页
...
260
261
262
263
264
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他