Search:

Type: Posts; User: fedotxxl; Keyword(s):

Search: Search took 0.02 seconds.

  1. How can I download latest version of Spring Insight?

    Where can I find latest version of Spring Insight with latest plugins?
  2. groovy.lang.MissingMethodException during mvn grails:test-app

    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...
  3. Continue processing after successful login request

    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)...
  4. Implementing token based auth for RESTful service API

    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 -...
  5. Replies
    1
    Views
    593

    BindingBuilder API misunderstanding

    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...
  6. Replies
    1
    Views
    766

    ACL, Hibernate and TransactionManager

    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...
  7. Replies
    0
    Views
    445

    Permission noob question

    What are the rools for 1st and 2nd args of BasePermission (int mask and char code)?
  8. Replies
    0
    Views
    398

    JSR 303 Hibernate question

    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...
  9. Replies
    4
    Views
    1,435

    Any suggetions how can I do it like spring? I...

    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 ...
  10. Replies
    4
    Views
    1,435

    Unit testing @Valid?

    Hello
    I'm using my configured controller at unit testing. Here is test code
    @Test
    public void registerInvalidUser() {

    User user = UserFactory.createInvalidUser();
    BindingResult result...
  11. Replies
    0
    Views
    366

    ViewNames without hardcode

    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). ...
Results 1 to 11 of 11