Posts by Rodrigo Engelberg • 164 points
6 posts
-
5
votes1
answer719
viewsA: What is the difference between "=" and "<" in the "Scope" options of a customised directive?
You’re making a little mess with the scope isolated from the directive. I will clarify further: By default, when creating a directive, it has scope: false thus, it does not create a scope, it uses…
-
1
votes2
answers178
viewsA: Destroy Angularjs function
By default the FlexSlider has the attribute slideshow: true, in this case, to stop the execution you will have to set this value to false. See how it will look: vm.clicou = function(){…
-
0
votes1
answer28
viewsA: Is it possible to make conditional injections with Springsecurity?
Note that your methods have different purposes, so it would be interesting to separate the responsibilities as follows: getAlunosByEscola Method to return the list of students of the school, making…
springanswered Rodrigo Engelberg 164 -
1
votes1
answer1323
viewsA: Extract data from a json file using Simplejson?
You’re probably not succeeding because you imported Simplejson but not Streamreader, which is what you actually use. For you to do what you want, you’ll need to deserialize the file .json see how…
-
1
votes1
answer433
viewsA: How to detect Mysql changes in Nodejs?
In my view, your application has this responsive routine, ie, do something automatically when any action occurs. Correct? If your web server supports, I suggest you use WebSocket to do exactly what…
-
2
votes1
answer1269
viewsA: What is the Lombok?
The Lombok is a Framework licensed MIT, can be used freely in any Java project. Its main objective is to decrease the verbosity of mapping classes JPA, DTOs e Beans for example. Its advantage is to…