Embed presentation
Download as PDF, PPTX












![REST Todo Resource (Client)
var todoApp = angular.module( 'todoApp', ['ngResource']);
!
todoApp.factory( 'todoResource', ['$resource', function($resource) {
return $resource( '/rest/todos/:todoId', { todoId: '@todoId' }, {
archive: {
url: '/rest/archive',
method: 'DELETE',
params: {todoIds: '@todoIds'}
}
});
}]);
http://angularjs.org](https://image.slidesharecdn.com/osgiusersforumevent2014-140130065648-phpapp02/85/OSGi-Web-Development-in-Action-13-320.jpg)



This document discusses OSGi web development and provides resources for developing simple web applications using OSGi. It introduces the Bndtools IDE for developing OSGi applications and provides a link to a tutorial blog by Peter Kriens on building a simple OSGi-based web app. It also outlines how to create RESTful web services and static web bundles in an OSGi environment and deploy the application into a servlet container.












![REST Todo Resource (Client)
var todoApp = angular.module( 'todoApp', ['ngResource']);
!
todoApp.factory( 'todoResource', ['$resource', function($resource) {
return $resource( '/rest/todos/:todoId', { todoId: '@todoId' }, {
archive: {
url: '/rest/archive',
method: 'DELETE',
params: {todoIds: '@todoIds'}
}
});
}]);
http://angularjs.org](https://image.slidesharecdn.com/osgiusersforumevent2014-140130065648-phpapp02/85/OSGi-Web-Development-in-Action-13-320.jpg)

