Tag Archives: wildfly

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

JEE7, Maven, Testing and Wildfly 8.x

Today i want to start a new maven based project. The result should run on wildfly and should employ arquillian for integration testing. I first read about arquillian back in february. i learned it was very tedious to get wildfly 8 and arquillian … Continue reading

Posted in Java, JEE7, maven | 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

Automated JDBC-Driver and Datasource deployment with Wildfly 8.x

My goal is to configure an enterprise application so that it runs on wildfly out of the box: No need to upload and/or deploy the jdbc driver No need to create the datasource for the application manually The deployment procedure … Continue reading

Posted in IT, Java, JEE7, maven, Uncategorized | Tagged , , , , , | 11 Comments

Running Wildfly from Intellij on OS X

My first attempt to start wildfly from IntelliJ IDEA 13 Ultimate didn’t work (glassfish 4 was ok, though): The IDE said something like: “please run intellij idea at least with java 1.7” whoot?! i’m on 1.7 jdk for quite some … Continue reading

Posted in Java, JEE7, OS X, Uncategorized | Tagged , , | Leave a comment

Installing Wildfly on Mac OS X

Wildfly can be installed very quick using Homebrew: I’ve written a short article on installing and using Homebrew here volkers-imac:~ mupfel$ brew update Checking out files: 100% (706/706), done. … volkers-imac:~ mupfel$ brew search wildfly wildfly-as volkers-imac:~ volker$> brew install … Continue reading

Posted in Java, OS X | Tagged , , , , , | 5 Comments