Category Archives: wildfly8

Docker, Wildfly, your application and the dev life cycle

Hi, using docker it is very easy to have your web application available for testing in a non mocked environment.

Posted in JEE7, Unix, wildfly8 | Tagged , , , | Leave a comment

Updating jboss wildfly to the latest version

Updating wildfly installed by homebrew is as easy as it could be: 1. update brew packages 2. upgrade wildfly A bit more verbose: Check which version of wildfly-as is installed. You should see something similar to the following lines: [mupfel@volkers-imac]$~ > … Continue reading

Posted in CLI, IT, OS X, wildfly8 | Tagged , , , | Leave a comment

jboss-cli: deploying and undeploying with wildfly8

There’re several ways to deploy to wildfly. One way is to use jboss-cli: deploy: [volker@Volkers-MacBook-Pro]$~/dev/ideaProjects/awesome > jboss-cli.sh –connect –command=”deploy target/awesome.war” undeploy: [volker@Volkers-MacBook-Pro]$~/dev/ideaProjects/awesome > jboss-cli.sh –connect –command=”undeploy awesome.war”  

Posted in CLI, wildfly8 | Tagged , , , | Leave a comment

JAX-RS file upload

For my current project i needed a RESTful file upload service. You’ll find the source code on github: JAX-RS file upload

Posted in maven, wildfly8 | Tagged , , , | Leave a comment

List all deployed artifacts in wildfly 8

JBoss Wildfly comes with a very handy command line interface jboss-cli.sh. Jboss-cli can execute arbitrary commands on your wildfly installation. Example: Using this tool it’s very easy to get an overview over all currently deployed artifacts (ear, war and jar … Continue reading

Posted in IT, JEE7, OS X, wildfly8 | Leave a comment