Browsed by
Author: Jon Steege

Spring java file and data upload

Spring java file and data upload

If you need to make a service endpoint in spring that takes a file and some structured data, like json, you might find that spring is less than happy about that working in the normal way you might be used to.

In order to make this work, you want the endpoint to take a multipartFile object and a string object. Using a domain object and hoping spring marshals it will not work. Below is an example of how to do this in Spring 5.

import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashMap;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.multipart.MultipartFile;

  @PostMapping("/dataAndFile")
  public ResponseEntity dataAndFileUpload(
      @RequestPart(value = "dataInput") String dataInput,
      @RequestPart(value = "csv") MultipartFile csv
  ) throws IOException {

    ObjectMapper bulkObject = new ObjectMapper();
    HashMap input = bulkObject.readValue(dataInput, HashMap.class);
    InputStream thefile = csv.getInputStream();

    return new ResponseEntity(HttpStatus.OK);
  }

How to start a Virtualbox VM as a service using systemd

How to start a Virtualbox VM as a service using systemd

First, you need to start the vm, headless, from the command line. To do this, drop into a terminal and run:

vboxmanage list vms

This should give you a list of VM’s available to your user. In my case, it gave me:

jon@mycomputerninja:~ $ vboxmanage list vms
"your vm name" {1f134d1e-ba34-432c-b6e4-fc01f1ad250f}

Then, you can run:

vboxmanage startvm <your vm name here> --type headless

Then, do:

ps aux | grep <vmname>

To see what command was actually run. This should show some output like:

jon@mycomputerninja:/etc/systemd/system $ ps aux| grep Zone
jon       4560 63.9 17.4 3214804 703504 ?      Sl   01:18   0:58 /usr/lib/virtualbox/VBoxHeadless --comment Zoneminder --startvm 1f134d1e-ba34-432c-b6e4-fc01f1ad250f --vrde config

Now, armed with the command that was actually run, highlighted above, you can build a systemd init file. An example init file is below.

[Unit]
Description=Zoneminder VM startup
WantedBy=multi-user.target

[Service]
Type=simple
ExecStart=/usr/lib/virtualbox/VBoxHeadless --comment Zoneminder --startvm 1f134d1e-ba34-432c-b6e4-fc01f1ad250f --vrde config
User=jon
Restart=always

That file should get dropped into /etc/systemd/system/ and named something like <myservice>.service. In my case, since I was running a zoneminder service, I named it zoneminderVM.service. You also note I run it as my user, as it won’t work as the root user, because the vm context for root is different. I also run it in the multi-user target in wantedby so that the system is mostly up before this service is attempted to run.

Next, you need to run the relevant systemd commands to run this new service. so do the following:

sudo systemctl daemon-reload
sudo systemctl start <your service file name>.service 
sudo systemctl status <your service file name>.service 

If all goes well, your VM should start up as a service under your username, and restart any time the machine restarts.

Foscam FI9821P config in zoneminder 1.32.3

Foscam FI9821P config in zoneminder 1.32.3

To configure a Foscam FI9821P in the most recent zoneminder v1.32.3, use the following parameters in the source config:

source: rtsp://<user>:<pass>@<ip>:<port>/videoMain
method:tcp
color: 32
width 1280
height 720

These params allowed zoneminder to hook up to the camera and monitor video. There was a preset for this camera, but it did not seem to work, and the ONVIF auto-config errored out for some reason.