没有收到从 jQuery ajax 到 JAVA RESTful 网络服务的任何请求

Didn't getting any requests from jQuery ajax to JAVA RESTful webservice

请帮我解决这个严重的问题...

我的 Web 应用程序是使用 'html, javascript and css' 开发的,用于前端和后端,在 JAVA 中使用 RESTful webservice。

前端部署在 Apache2 服务器,后端部署在 JBOSS7 服务器。目前无法通过 jQuery ajax 进行前端和后端之间的通信。也没有显示任何错误消息..!但是没有从 Apache 服务器收到对 JBOSS 服务器的任何请求调用。我使用 'application/json' 作为 contentType。在这里添加我使用的代码...

$.ajax({

url : URL,
type : 'POST',
headers : {
            "ACCEPT" : "application/json"
      },
contentType : "application/json; charset=utf-8",
crossDomain : true,
data : request,
dataType : 'json',

success : function(response){

          //my code
   },                                   
  error : function(xhr, status, error) {
          //my code
   }
 });

希望大家帮帮我。

提前致谢..

$.ajax({
        url: url,
        type: "POST",
         data: { 
             'param1':'value1',
             'param2':value2,
            },
        dataType:"json",
        beforeSend:function(){
        },
        success: function(solution){
        },
        error: function(errorType, textStatus, errorThrown){
        },
        complete: function(){
        }

    });

在数据字段中的 POST 方法中,您必须发送 post 参数