I am trying to pass a JSON array into spring MVC Controller like such:
var myList = new Array(); data._children.forEach( function (d) {
You can try
@RequestParam("myList") myList tempmyList
@Param myList tempmyList
in addition, class names must begin with a capital letter.