从Spring MVC Controller推送实时数据

时间:2017-01-12 01:26:53

标签: java android spring spring-mvc

我做了一个简单的Rest android客户端,它向A Spring mvc控制器发送请求。

这是android代码

package security.com.testing;

import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;

import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
import org.springframework.web.client.RestTemplate;

import java.util.HashMap;
import java.util.Map;


public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    private EditText editTextName;
    private EditText editTextUsername;
    private EditText editTextPassword;
    private EditText editTextEmail;

    private Button buttonRegister;
    //This is our root url
    public static final String ROOT_URL = "http://192.168.1.68/";
    private Map<String, String> vars;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        vars = new HashMap<String, String>();
        vars.put("id", "JS01");
        new HttpRequestTask().execute();

    }


    //Overriding onclick method
    @Override
    public void onClick(View v) {
        //Calling insertUser on button click

    }


    private class HttpRequestTask extends AsyncTask<Void, Void, User> {
        @Override
        protected User doInBackground(Void... params) {
            try {
                final String url = "http://192.168.88.1:8080/api/{id}";

                User u = new User();
                u.setName("Johnathan M Smith");
                u.setUser("JS01");


                RestTemplate restTemplate = new RestTemplate();
                restTemplate.getMessageConverters().add(new MappingJackson2HttpMessageConverter());
                User us = restTemplate.postForObject(url, u, User.class, vars);
                return us;
            } catch (Exception e) {
                Log.e("MainActivity", e.getMessage(), e);
            }

            return null;
        }

        protected void onPostExecute(Greeting greeting) {
        }

    }

}

我的MVC控制器成功接受android请求(用户对象)。

这是我的Mvc控制器代码

import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.*;

@Controller
@RequestMapping("/api")
public class GreetingController {

    @RequestMapping(value = "/{id}", method = RequestMethod.POST)
    @ResponseBody
    public String updateCustomer(@PathVariable("id") String id, @RequestBody User user,Model model) {
        System.out.println("I am in the controller and got user name: " +user.getName());
        model.addAttribute("name", user.getName());
        return "result";
    }
}

我现在的问题是,当Mvc控制器实时接受请求的值时,我想更新浏览器。请求每3分钟一次,我希望通知浏览器(当Mvc控制器接受请求时)。我该怎么做?。我不确定,但我认为我应该使用反向ajax或cometd。你能帮助我实现它,对不起我的愚蠢问题,但我很困惑,我无法找到解决问题的正确方法。

1 个答案:

答案 0 :(得分:1)

选项A:我找到了解决问题的方法。我使用websockets与浏览器进行实时数据更新。一个HTML文件导入SockJS和STOMP javascript库,这些库将用于通过websocket使用STOMP与我的服务器通信。仔细看看Here。 Springframework有自己的api,使用Spring Framework 4.0引入的新WebSocket功能实现消息传递

选项B:另一种解决方案是使用Atmoshpere,它是JVM的实时客户端服务器框架,支持跨浏览器回退的WebSockets