小编son*_*vis的帖子

如何更改Hudson默认界面语言

我正在通过命令行运行hudson.war.它以我的默认语言portuguese启动界面.我怎样才能换成英文?

continuous-integration hudson jenkins

10
推荐指数
2
解决办法
8631
查看次数

CreateProcess error = 206,文件名或扩展名太长

我试图通过Ant 调用 Findbugs,但收到此错误:

Cannot run program "C:\Program Files (x86)\Java\jre6\bin\javaw.exe" (in 
directory "H:\Users\MyName\workspace\MyProject"): 
CreateProcess error=206, The filename or extension is too long
Run Code Online (Sandbox Code Playgroud)

我怎样才能解决这个问题?OO

ant findbugs

10
推荐指数
1
解决办法
3万
查看次数

HTTP错误:503 ...访问/ jenkins.原因:服务不可用

我正试图在Jetty的/ webapps中部署Jenkins.我已将jenkins.war复制到此目录,重新启动Jetty,但当我指向http:// localhost:8080/jenkins时,系统会发出警告:

HTTP错误:503访问/ jenkins时出现问题.原因:服务不可用

这是我的控制台日志

2012-02-02 09:13:39.912:WARN:oejuc.AbstractLifeCycle:FAILED org.eclipse.jetty.security.ConstraintSecurityHandler@22bbe7: java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@1985384 in org.eclipse.jetty.security.ConstraintSecurityHandler@22bbe7
java.lang.IllegalStateException: No LoginService for org.eclipse.jetty.security.authentication.FormAuthenticator@1985384 in org.eclipse.jetty.security.ConstraintSecurityHandler@22bbe7
    at org.eclipse.jetty.security.authentication.LoginAuthenticator.setConfiguration(LoginAuthenticator.java:44)
    at org.eclipse.jetty.security.authentication.FormAuthenticator.setConfiguration(FormAuthenticator.java:103)
    at org.eclipse.jetty.security.SecurityHandler.doStart(SecurityHandler.java:341)
    at org.eclipse.jetty.security.ConstraintSecurityHandler.doStart(ConstraintSecurityHandler.java:228)
    at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:59)
    at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:90)
    at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
    at org.eclipse.jetty.server.session.SessionHandler.doStart(SessionHandler.java:122)
    at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:59)
    at org.eclipse.jetty.server.handler.HandlerWrapper.doStart(HandlerWrapper.java:90)
    at org.eclipse.jetty.server.handler.ScopedHandler.doStart(ScopedHandler.java:97)
    at org.eclipse.jetty.server.handler.ContextHandler.startContext(ContextHandler.java:745)
    at org.eclipse.jetty.servlet.ServletContextHandler.startContext(ServletContextHandler.java:242)
    at org.eclipse.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1213)
    at org.eclipse.jetty.server.handler.ContextHandler.doStart(ContextHandler.java:699)
    at org.eclipse.jetty.webapp.WebAppContext.doStart(WebAppContext.java:454)
    at org.eclipse.jetty.util.component.AbstractLifeCycle.start(AbstractLifeCycle.java:59)
    at org.eclipse.jetty.deploy.bindings.StandardStarter.processBinding(StandardStarter.java:36)
    at org.eclipse.jetty.deploy.AppLifeCycle.runBindings(AppLifeCycle.java:183)
    at org.eclipse.jetty.deploy.DeploymentManager.requestAppGoal(DeploymentManager.java:491)
    at org.eclipse.jetty.deploy.DeploymentManager.addApp(DeploymentManager.java:138)
    at org.eclipse.jetty.deploy.providers.ScanningAppProvider.fileAdded(ScanningAppProvider.java:142)
    at org.eclipse.jetty.deploy.providers.ScanningAppProvider$1.fileAdded(ScanningAppProvider.java:53)
    at org.eclipse.jetty.util.Scanner.reportAddition(Scanner.java:604)
    at org.eclipse.jetty.util.Scanner.reportDifferences(Scanner.java:535)
    at …
Run Code Online (Sandbox Code Playgroud)

continuous-integration jetty jenkins

9
推荐指数
2
解决办法
2万
查看次数

正确设置Maven 3

我该如何正确设置Maven 3?

我的环境:

  • Fedora Linux 16;
  • Java 1.7.0_22
  • Maven 3.0.4

我的.bash_profile

# .bash_profile

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
    . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin:$JAVA_HOME/bin:$M2_HOME/bin
export PATH

JAVA_HOME=/usr/java/jdk1.7.0_02
export JAVA_HOME

M2_HOME=/home/ic/apache-maven-3.0.4
export M2_HOME
Run Code Online (Sandbox Code Playgroud)

当我输入java -version时,系统会显示给我

java version "1.7.0_02"
Java(TM) SE Runtime Environment (build 1.7.0_02-b13)
Java HotSpot(TM) Client VM (build 22.0-b10, mixed mode, sharing)
Run Code Online (Sandbox Code Playgroud)

但是当我键入mvn -v时,它显示我:

bash: mvn: command not found...
Run Code Online (Sandbox Code Playgroud)

我该怎么做才能正确设置Maven 3?

提前致谢!

java fedora maven

9
推荐指数
1
解决办法
2万
查看次数

如何通过命令行安装OpenJDK的Javadoc?

如何在Ubuntu 11.10中通过命令行安装OpenJDK的Javadoc?

java ubuntu

9
推荐指数
1
解决办法
6204
查看次数

MongoDB安全

除了"通用"服务器的安全最佳实践之外,我正在寻找MongoDB服务器的"安全最佳实践".你能指点我有用的资源吗?

security mongodb

8
推荐指数
3
解决办法
5018
查看次数

Maven 3:无法执行目标org.apache.maven.plugins:maven-archetype-plugin:2.2:generate

我正在尝试使用maven测试

mvn archetype:generate -DgroupId=org.sonatype.mavenbook -DartifactId=quickstart -Dversion=1.0-SNAPSHOT -DpackageName=org.sonatype.mavenbook -DarchetypeGroupId=org.apache.maven.archetypes -DarchetypeArtifactId=maven-archetype-quickstart -DarchetypeVersion=1.0 -DinteractiveMode=false
Run Code Online (Sandbox Code Playgroud)

几分钟后,系统显示我:

Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/archetype/archetype-catalog/2.2/archetype-catalog-2.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/archetype/archetype-catalog/2.2/archetype-catalog-2.2.pom (2 KB at 4.4 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/apache/maven/archetype/archetype-models/2.2/archetype-models-2.2.pom
Downloaded: http://repo.maven.apache.org/maven2/org/apache/maven/archetype/archetype-models/2.2/archetype-models-2.2.pom (3 KB at 5.8 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom
Downloaded: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-utils/1.5.8/plexus-utils-1.5.8.pom (8 KB at 17.0 KB/sec)
Downloading: http://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/2.0.2/plexus-2.0.2.pom
Downloading: http://repo.maven.apache.org/maven2/org/apache/ant/ant-parent/1.8.1/ant-parent-1.8.1.pom
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 30:36.874s
[INFO] Finished at: Tue Feb 07 15:59:39 BRST 2012
[INFO] Final Memory: 5M/15M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-archetype-plugin:2.2:generate (default-cli) on project …
Run Code Online (Sandbox Code Playgroud)

java maven-plugin maven-3 maven-archetype

6
推荐指数
2
解决办法
4万
查看次数

如何部署 Node.js 应用程序?

Node.js 是“服务器上的 JavaScript”。好的。但是,我如何“部署”一个 Node.js 应用程序?我应该使用哪种网络服务器?如何创建“控制器”?以及如何将数据保存在数据库中?提前致谢。

node.js

5
推荐指数
1
解决办法
3870
查看次数

Node.JS精确计时器

如何创建Node.JS准确计时器?它看起来应该像厨房定时器或秒表.

而且我需要尽可能准确.该应用程序将促进某种"点击战".我需要存储每个(并发)用户的点击,注意秒和毫秒(以打平比赛).

我该怎么做?有一些代码示例吗?

提前致谢.

javascript timer node.js

3
推荐指数
1
解决办法
9795
查看次数

Node.js TypeError:object不是函数

我正在尝试运行Mike Wilson的图书示例应用程序,但收到以下错误:

pcassiano@...:~/socialnet$ sudo node app.js

/home/pcassiano/socialnet/app.js:60
  require('./routes/' + routeName)(app, models);
                                  ^
TypeError: object is not a function
    at /home/pcassiano/socialnet/app.js:60:35
    at Array.forEach (native)
    at Object.<anonymous> (/home/pcassiano/socialnet/app.js:57:26)
    at Module._compile (module.js:449:26)
    at Object.Module._extensions..js (module.js:467:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.runMain (module.js:492:10)
    at process.startup.processNextTick.process._tickCallback (node.js:244:9)
Run Code Online (Sandbox Code Playgroud)

我正在运行该书的回购中的最新代码.

我该怎么做才能正确运行这个示例应用程序?

提前致谢.

mongodb node.js

3
推荐指数
1
解决办法
4064
查看次数

有效地重命名Rails项目

重命名Ruby on Rails 3项目的最有效,最安全最简单的方法是什么?

refactoring ruby-on-rails

2
推荐指数
1
解决办法
2178
查看次数