SyntaxError: Unexpected token < in JSON at position 3

I’m having an error in Ionic 2 “SyntaxError: Unexpected token < in JSON at position 3”. My json format is correctly structured using spring boot. Below is my spring boot code. Appreciate your help.

Donald

@RequestMapping(value="/myview", method=RequestMethod.GET, produces = “application/json”)
@ResponseBody
List myView( @ModelAttribute(“client”) Client client){

    List<Client> data=(List<Client>) clientService.getAll();


    return data;
}

import { Injectable } from ‘@angular/core’;
import { Http } from ‘@angular/http’;
import ‘rxjs/add/operator/map’;

@Injectable()
export class PeopleService {
people: any;

constructor(public http: Http) {}

load(){

if (this.people) {

return Promise.resolve(this.people);

}

return new Promise(resolve => {
this.http.get(‘http://localhost:8080/myview’)
.map((res)=>res.json()).subscribe((data)=>{
console.log(data);
this.people=data;
resolve(this.people);
}, err=>{console.log(err)});
});
}// end load function

}

My http://localhost:8080/myview is not working because when I tried the below code with Array value it works. How to call the http instead of putting static values in the Array?

import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
import 'rxjs/add/operator/map';


@Injectable()
export class PeopleService {

  people: Array<any> = [{"id":1,"username":"donald@yahoo.com","policyno":"V121293031","fname":"Donald","mobile":"0504735250","email":"dcgatan@gmail.com","address":"Dafza Dubai","amount":800.98,"datetimestamp":1472861297000},{"id":3,"username":"dcgatan78@gmail.com","policyno":"V38998933","fname":"Donald","mobile":"0501234567","email":"dcgatan@gmail.com","address":"MetLife Dubai","amount":334.34,"datetimestamp":1472862939000}];


  constructor(private http: Http) {}

load(){
  
    if (this.people) {

  return Promise.resolve(this.people);
  
  }

 return new Promise(resolve => {
   
    this.http.get('http://localhost:8080/myview')
    .map((res)=>res.json())
    .subscribe((data)=>{
       this.setPeople(data);
       resolve(this.people);
     });
  });
}// end load function

setPeople(data) {
	  if (data) {
	    for (let id of Object.keys(data)) {
	      let item = data[id];
	      
	      item.id = id;
	      
	      this.people.push(item);
	    }
	  }
	}

}