I just started JAVA EE development with WildFly 8.2. My first problem is how to change the default port 8080 to something else?
I found many xml files containing bel
An alternative would be to start the WildFly instance by directly specifying the port in the startup command.
Windows:
standalone.bat -Djboss.http.port=1234
*nix:
standalone.sh -Djboss.http.port=1234
This would start the port for http-remoting on 1234. Some context here.
1234