Skip to content

Instantly share code, notes, and snippets.

View banacleto's full-sized avatar
🌱
Focusing

Bruno Anacleto banacleto

🌱
Focusing
View GitHub Profile
@roncat
roncat / DataSource
Last active December 14, 2018 18:44
Install MySQL on DataSource on JBoss EAP 6
Example to install MySQL driver on DataSource JBoss EAP 6
=========================================================
First we will create a new module. A module in this sense is a package of classes that will be available to all our application through your JBoss node. This is a big differences compared with older JBoss version where all deployed archive where directly available to other deployed application when deployed in the deployment root folder.
You find module in $JBOSS_HOME/modules folder. To create a new module you need to do three things:
1 - Create a folder hierarchy for files.
$ mkdir -p $JBOSS_HOME/modules/com/mysql/main
2 - Copy module jar files.
@davidecavaliere
davidecavaliere / gist:5607823
Created May 19, 2013 14:31
aui-io-request example
var io = A.io.request(
url.toString(),
{
autoLoad: false,
cache: true,
method: 'get',
on: {
start: function(event,id) {
console.log('start');
console.log(event);