Hot deploy on JBoss – how do I make JBoss “see” the change?

I had the same problem in my bundle: (Eclipse IDE + JBoss server adapter) + JBoss AS 7.0.1 (community project). My solution is very simple – you should go to JBoss administrative panel (by default localhost:9990), there in profile settings open Core – Deployment Scanners. Turn on Autodeploy-Exploded (set to true), and by your wishes … Read more

How do I set up linkage between Docker containers so that restarting won’t break it?

The effect of –link is static, so it will not work for your scenario (there is currently no re-linking, although you can remove links). We have been using two different approaches at dockerize.it to solve this, without links or ambassadors (although you could add ambassadors too). 1) Use dynamic DNS The general idea is that … Read more

PhpStorm – Advantages of Editing Deployed Files Directly vs Downloading and Syncing

If I edit files directly on the deployed server, would any PhpStorm functionality be lost? Yes. To name a few: IDE cannot index files that are not in the project and therefore cannot provide any code completion help for classes/functions/etc that defined on remote only files; True project-wide search is not possible (as it works … Read more

Best Practice for loading 3rd party JARs in JBoss AS7 standalone deployment?

For smaller dependencies that’re private to a deployment, keep ’em in WEB-INF/lib in your .war, that’s what it’s for. If you’re using Maven that should be pretty much automatic and transparent for anything in the <compile/> scope. For big, complex dependencies or dependencies that’ll be shared between several apps, use option (4): Deploy each logical … Read more

Format of the initialization string does not conform to specification starting at index 0

Format of the initialization string does not conform to specification starting at index 0 Web.config : <connectionStrings> <add name=”TestDataConnectionString” connectionString=”Data Source=.\SQLExpress;Initial Catalog=TestData;User ID=satest;Password=satest” /> </connectionStrings> In aspx.cs Page the code must be written in the below format : SqlConnection con = new SqlConnection(ConfigurationManager.ConnectionStrings[“TestDataConnectionString”].ToString());

How do you maintain development code and production code? [closed]

Update 2019: These days, the question would be seen in a context using Git, and 10 years of using that distributed development workflow (collaborating mainly through GitHub) shows the general best practices: master is the branch ready to be deployed into production at any time: the next release, with a selected set of feature branches … Read more