como habilitar o CORS com o Vert.x 2.x

Estou tentando fazer solicitações entre domínios com o Angularjs 1.4.5. Mas não pode obter sucesso. Eu configurei o $ httpprovider

.config(['$httpProvider', function($httpProvider) {
        $httpProvider.defaults.useXDomain = true;
        delete $httpProvider.defaults.headers.common['X-Requested-With'];
        $httpProvider.defaults.headers.common['Accept']= "application/json, text/plain, */*";
        $httpProvider.defaults.headers.put["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8";
        $httpProvider.defaults.headers.post["Content-Type"] = "application/x-www-form-urlencoded;charset=utf-8";
        $httpProvider.interceptors.push('authenticationFailedInterceptor');
    }])

Mas ainda não obtém sucesso. Como habilitar o suporte ao CORS com o servidor http Vert.x 2.x.

O CORS é suportado no Vert.x 3.x, mas no momento não posso atualizar o Vert.x.

questionAnswers(2)

yourAnswerToTheQuestion