51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#参数错误
Java中System.getProperty()的参数
通常我们会使用System.getProperty()来获取路径,但是这个方法还包含了很多使用的功能,测试如下: Propertiesprops=System.getProperties();//系统属性System.out.println("Java运行时环境版本:"+props.getProperty("ja...
代码星球
·
2020-04-04
Java
System.getProperty
参数
记录一次(xheditor-1.1.6-zh-cn.min.js)的错误:Cannot read property 'match' of undefined的问题解决
由于使用了xheditor富文本框,且这个版本是2011年开发的系统,当时只有IE8,所以一切正常。但是问题来了,今天使用IE11测试和谷歌浏览器测试,发现一直报这个错误:且google了一下,没发现这个插件对应这个错误的解决方法。最后发现是和浏览器不兼容导致的,如果是使用IE,只要切换到兼容模式下运行就行了,goog...
代码星球
·
2020-04-04
记录
一次
xheditor-1.1.6-zh-cn.min.js
错误
Cannot
记录一次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....
代码星球
·
2020-04-04
server
记录
一次
eclipse
错误
Jenkins连接TFS出现错误:“jenkins com.microsoft.tfs.core.exceptions.TECoreException”的问题收集
没成功解决过,下面提供一些收集的链接地址,因为这个问题真的很少。https://social.msdn.microsoft.com/Forums/vstudio/en-US/1a75a0b2-4591-4edd-999a-9696149c8144/integration-with-jenkins?forum=tfsin...
代码星球
·
2020-04-04
Jenkins
连接
TFS
出现
错误
Maven错误:“No goals have been specified for this build...”问题解决
如图出现如下错误:解决方法如下:1、(未测试)在pom.xml添加如下配置:<build><defaultGoal>compile</defaultGoal></build>2、直接在运行的命令行上加入://执行mvncleancompiletest//打包mvnclea...
代码星球
·
2020-04-04
Maven
错误
No
goals
have
Jenkins错误“to depth infinity with ignoreexternals:true”问题解决
试下以下解决方法:1、可能是SVN插件版本过低导致,升级SVN插件。2、可能是构建时自己手动修改了代码,而SVN检出时无法覆盖导致的错误,可以先删除jenkins检出的代码,然后再检出一次去构建。3、配置SVN插件,如下:参考:https://issues.jenkins-ci.org/browse/JENKINS-9...
代码星球
·
2020-04-04
Jenkins
错误
to
depth
infinity
jeesite导入数据库错误:java.sql.SQLException: Incorrect string value: 'xE4xB8xADxE5x9BxBD' for column 'name' at row 1问题解决
如果使用mvnantrun:run-Pinit-db进行数据库导入导致出现如下错误:解决方法:这个是由于新建数据库没有选择默认字符集导致的,只要选择utf-8即可。 ...
代码星球
·
2020-04-04
jeesite
导入
数据库
错误
java.sql.SQLException
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
出现
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...
代码星球
·
2020-04-04
Maven
错误
Failed
to
execute
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
the
mysql
Mac
启动
MySQL
brew udpate出现错误“/usr/local is not writable.”的问题解决
如图所示:在命令行输入:sudochown-R当前登录的用户名/usr/local再次输入:brewupdate问题解决。...
代码星球
·
2020-04-04
brew
udpate
出现
错误
usr
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
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
启动
MyBatis3-传递多个参数(Multiple Parameters)
传递多个参数一般用在查询上,比如多个条件组成的查询,有以下方式去实现:版本信息:MyBatis:3.4.41、自带方法<selectid="getUserArticlesByLimit"resultMap="resultUserArticleList">selectuser.id,user.userName...
代码星球
·
2020-04-04
MyBatis3-
传递
多个
参数
Multiple
首页
上一页
...
143
144
145
146
147
...
下一页
尾页
按字母分类:
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
其他