Where can I find latest version of Spring Insight with latest plugins?
Type: Posts; User: fedotxxl; Keyword(s):
Where can I find latest version of Spring Insight with latest plugins?
Hello
I have domain object Server. During bootstrap following code is called
serverUrl = Server.get(1)?.url Following command is executed during app build Sometimes grails:test-app failures with...
Hello
I'm using url "/login" to process login request. Is it possible to continue processing of request after succesful login (UsernamePasswordAuthenticationFilter forces me to make redirection)...
Hello
I would like to create the following API:
/api-login - logins user and returns token
/api/{token}/add - add user's item
Am I able to define 2 different Spring Security configurations -...
Hello
I have the followind code
Binding b = BindingBuilder.from(someQueue).to(someTopicExchange).with("foo.*"); I can interpret this code like messages from queue "someQueue" will be delivered...
Hello
I'm using Hibernate for my DAO. How should I manage transactions? Suppos I've got a method
...
dao.save(object)
acl.addPermission(object, ...)
....
throw new Exception(); What...
What are the rools for 1st and 2nd args of BasePermission (int mask and char code)?
Hello
I've got 2 questions:
1. Is it possible to get bean context if annotation is attached to field / method
2. Can I make (or mark) annotation that will work at @Valid, but doesn't trigger at...
Any suggetions how can I do it like spring? I need to fill my BindingResult object
This is stack trace. I'm getting error when I'm trying to save invalid User object. This happens bescause ...
Hello
I'm using my configured controller at unit testing. Here is test code
@Test
public void registerInvalidUser() {
User user = UserFactory.createInvalidUser();
BindingResult result...
Hello
Could you give best practice if using not hard coded view names. Now I have to hard code view names at: controller return value, @RequestMapping annotation, view template (JSP, Freemarker). ...