Posts by Anderson Marques • 46 points
3 posts
-
2
votes1
answer2310
viewsA: REST with Could not find error
Write down your method with @path("/"). This means that this is the root path of your resource. Example: @Path("/teste") public class TesteService { @Path("/") @GET…
-
0
votes1
answer414
viewsA: ANGULARJS- NG-OPTIONS
When you write in ng-options "item.code as item.Description", you are saying for the angular "I want the item code but display the item description". If your function listCamara returns a list of…
angularjsanswered Anderson Marques 46 -
1
votes1
answer583
viewsA: Listview of Android database - Close application with error
Is a Nullpointerexception, that is, there is a variable with null value. The best way to solve runtime errors, as is the case with Nullpointerexception, is debugging the code. Search the error stack…