在AngularJS 1.5和Spring MVC中创建多个工厂和REST路径的解决方案如下:
var app = angular.module('myApp', []);
app.controller('myController', function($scope, myFactory) {
myFactory.getData().then(function(response) {
$scope.data = response.data;
});
});
app.factory('myFactory', function($http) {
var factory = {};
factory.getData = function() {
return $http.get('/api/data');
};
return factory;
});
@Controller
@RequestMapping("/api")
public class MyController {
@Autowired
private MyService myService;
@RequestMapping(value = "/data", method = RequestMethod.GET)
@ResponseBody
public List getData() {
return myService.getData();
}
}
@Service
public class MyService {
public List getData() {
// 从数据库或其他来源获取数据
return dataList;
}
}
请注意,上述代码是一个简单的示例,用于说明如何在AngularJS和Spring MVC中创建多个工厂和REST路径。您需要根据您的需求进行适当的修改和扩展。