Fix pagination

This commit is contained in:
jesus-dayo 2016-08-11 09:44:32 +08:00
parent 219e2f29fd
commit 114571e3a3
3 changed files with 3 additions and 2 deletions

View File

@ -1 +1 @@
server.contextPath=/StudentDirectory
server.contextPath=/

View File

@ -17,6 +17,7 @@ app.controller('StudentCtrl', ['$scope','StudentService', function ($scope,Stude
paginationPageSizes: [5, 10, 20],
paginationPageSize: paginationOptions.pageSize,
enableColumnMenus:false,
useExternalPagination: true,
columnDefs: [
{ name: 'studentId' },
{ name: 'name' },

View File

@ -22,7 +22,7 @@ import io.restassured.response.Response;
public class StudentServiceTest{
private String getURL() {
return "/StudentDirectory/student/get";
return "/student/get";
}
@Test