autodeploy

Connecting TFS to TeamCity

爱⌒轻易说出口 提交于 2019-12-24 13:43:02
问题 I'm trying to connect my TeamCity project to my TFS project with a free account (a windows live account). But I'm having a little bit a trouble doing this. I'm getting the error TF30063 (You are not authorized to access /DefaultCollection/). I've tried a lot of things, I even follow the instruction of this question -http://youtrack.jetbrains.com/issue/TW-20909-, but no luck... I already have: - Set admin permission to all members to my TFS project - Put the project on my computer in a public

WAR doesn't get redeployed in Glassfish from autodeploy

淺唱寂寞╮ 提交于 2019-12-20 03:11:43
问题 I was able to deploy my WAR the first time I placed it under domains/domain1/autodeploy dir. However, after making some changes and redeploying the WAR to the autodeploy dir, the changes were not picked up. I even deleted domains/domain1/applications/myapp (where myapp corresponds to the myapp.jar being deployed) but the WAR was not redeployed. The server was started and stopped via asadmin : asadmin start-domain asadmin stop-domain What am I doing wrong so that the app does not get

How to to autodeploy war file with GlassFish — from “Core JavaServerFaces” by David Geary, Cay S. Horstmann

北慕城南 提交于 2019-12-12 11:25:33
问题 Naive question, but this is my first step in JSF, so forgive me ;-) I am following all the steps of the first example from "Core JavaServerFaces" by David Geary, Cay S. Horstmann (the 3rd edition). What works in general: java works glassfish works I can compile the attached code I can create .war file The problem begins when I copy the war file into autodeploy subdirectory of GlassFish and try to show the appropriate page in GF. In return I get 404 error and in logs I find this: Selecting

How to enable auto redeploy in vertx when using intellij

╄→гoц情女王★ 提交于 2019-12-11 05:13:43
问题 How to enable auto redeploy in vertx application code when running in intellij idea? Intellij Settings for hot deployment of vertx application. 回答1: create a Run configuration (Application), set the Main class to io.vertx.core.Launcher. In the Program arguments write: run your-verticle-fully-qualified-name --redeploy=**/*.class --launcher-class=io.vertx.core.Launcher. To trigger the redeployment, you need to make the project or the module explicitly (Build menu → Make project). 来源: https:/

AutoDeploy a WAR file found in a subfolder of appBase

会有一股神秘感。 提交于 2019-12-01 11:37:05
I have a third party web application which I would like to deploy to a Tomcat 5.0 server via an installer. AutoDeploy is set to true. However, the application consists of more than one WAR file. If I put the WARs under /webapps directly, they work like a charm. However, I would like to expand them under /webapps/myapp/..and here the expanded WAR directory... This way they do not get AutoDeployed. Can somebody suggest what I need to configure for this to work? As this page suggests, you can place two XML files into $CATALINA_HOME/conf/[engine_name]/[host_name] directory (e.g. $CATALINA_HOME

AutoDeploy a WAR file found in a subfolder of appBase

十年热恋 提交于 2019-12-01 07:28:42
问题 I have a third party web application which I would like to deploy to a Tomcat 5.0 server via an installer. AutoDeploy is set to true. However, the application consists of more than one WAR file. If I put the WARs under /webapps directly, they work like a charm. However, I would like to expand them under /webapps/myapp/..and here the expanded WAR directory... This way they do not get AutoDeployed. Can somebody suggest what I need to configure for this to work? 回答1: As this page suggests, you