Search:

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

Search: Search took 0.01 seconds.

  1. MongoDB Abstract Type Mapping excludes _class when Pushing

    I am have the following class hierarchy.


    public class Sensor {
    List<Event> events;
    }

    public abstract class Event { ... }

    public class PressureEvent extends Event { ... }
  2. Replies
    4
    Views
    7,375

    Maven Repository

    Will Spring Security releases be published to s3://repository.springsource.com/maven/bundles/release/org/springframework/security/org.springframework.security.core/ anymore?
  3. Replies
    2
    Views
    756

    Polymorphic Binding

    Does any one have a good strategy to bind subclasses with a single superclass controller method? Is there a way to override/extend the binding process for the method below?



    public abstract...
  4. DataAccessException not Wrapping some Hibernate Exceptions

    I am having an issue with Spring not wrapping some Hibernate exceptions in a DataAccessException. The following exceptions are not getting wrapped.

    org.hibernate.ObjectNotFoundException...
  5. Replies
    2
    Views
    1,223

    UriTemplate Forward Slash and RequestMapping

    UriTemplate includes forward slashes within a path variable. For example...

    UriTemplate template = new UriTemplate("http://example.com/hotels/{path}"); ...
  6. Ended up with the following working well: ...

    Ended up with the following working well:



    @ExceptionHandler(ServiceException.class)
    public ModelAndView handleException(ServiceException ex, HttpServletResponse response) {
    ...
  7. ExceptionHandler Annotation: How to set HTTP response code?

    I am building a RESTful service with the 3.0 M3 release. I am currently stuck on how to set the HTTP response code in an ExceptionHandler. The AnnotationMethodHandlerExceptionResolver does not seem...
  8. Replies
    0
    Views
    812

    CheckboxTag PropertyEditor Aware

    Before I put a issue into Jira, I wanted to confirm that the CheckboxTag should/could be PropertyEditor aware and if the following code would be correct.


    Current (Revision 1.18):


    /**
    *...
  9. Replies
    0
    Views
    1,356

    Shared Socket Object

    I have run into a problem while moving our internal support applications to the spring framework from perl scripts.

    In our older applications, we have an object which connects to a custom socket...
Results 1 to 9 of 9