Page 1 of 2 12 LastLast
Results 1 to 10 of 19

Thread: Calling for Extension Proposals

Hybrid View

  1. #1
    Join Date
    Aug 2008
    Location
    England
    Posts
    26

    Default Calling for Extension Proposals

    This thread is for anyone who would like to request, comment on or propose a Spring Extension.

  2. #2
    Join Date
    Feb 2007
    Location
    England
    Posts
    71

    Default JSR 303 Validation framework

    I noticed there is a bean validation framework in modules, but not had a close look. I was wondering if would be possible to make this bean validation framework a JSR303 compliant implementation and have this as an extension project. Currently I only know of 2 compliant frameworks and one of those is badge under hibernate.

    Potentially such a framework project could exist outside Spring and be just as useful but maybe there is something that could be value add if a JSR303 framework was implement in the context of the Spring IOC container. This is just me thinking out loud and currently have no basis for my views. If I get time in the near future I will read the spec and dig around the existing implementations.

    Cheers
    Paul

  3. #3
    Join Date
    Dec 2007
    Posts
    130

    Default

    I was playing around with custom scopes, and I found that it might be useful to have a group session scope. A group session scope, would allow to share information among http sessions, but only among those sessions belonging to the group (for example, people in a irc). The group the user belongs to, might be determined at session scope, or even at other scopes such us flow or view. I even made an small prototype, and I could share info between different http sessions.

  4. #4
    Join Date
    Aug 2008
    Location
    England
    Posts
    26

    Default

    Hi Rober2D2,

    This sounds potentially like a new feature request on Spring Framework (for MVC) or Spring Web Flow rather than a full extension project? If you are seeing significant value then please raise a jira (after doing due diligence to make sure a similar request has not already been made) in the appropriate jira:

    Spring Framework:
    http://jira.springframework.org/browse/SPR

    Spring Web Flow:
    http://jira.springframework.org/browse/SWF

    Best regards,
    Russ
    Lead, Spring Extensions

  5. #5
    Join Date
    Aug 2006
    Posts
    382

    Default Spring Security Access Manager extension

    This is a proposal for a Spring Security extension to include an adapter for Sun's Access Manager product.

    I was on the subscription list for http://jira.springframework.org/browse/SEC-569, and saw it was just closed to "WON'T FIX". The reasons given are due to being dependent on a 3rd party, commercial product, and it being too much work to track those changes. The pushback was support being handled somewhere else, like Sourceforget.net.

    Sounds like a viable candidate, if someone is interested in pursuing it as the project lead.
    Greg L. Turnquist (@gregturn), SpringSource/VMware
    Project Lead: Spring Python and author of Spring Python 1.1 and Python Testing Cookbook.
    Listen to Pond Jumpers, the international podcast for open source developers.
    These comments are my own personal opinions, and do not reflect those of my company.

  6. #6

    Default Spring Monitoring extension

    i'll have to work next month in an application where i need to compute the execution time for different layers (principally services/bos and daos), logging that to a file and optionally present this information in a web page and as a JMX bean. Also i need to active or deactivate the trace and monitoring module via JMX beans or configure some Monitor for to a particular bean via jmx.

    For the trace we are planning to log something like this
    Code:
    bean-name[business-object-entities] - method[getAllEntities] - user[USERNAME]time[1234 ms]
       sub operation - - bean-name[crud-generic-dao] - method[getAll] - time[234 ms]
           sub operation - - bean-name[crud-dao-helper] - method[transform] - time[100 ms]
       sub operation - - bean-name[intranet-service-FN] - method[getData] - time[1000 ms]
    Basically i need to profile and show the execution stack of the application at any time, but .... it should be possible to active or deactivate this on the fly, by putting or removing a spring context file outside the application (${jboss.deploy.dir} in runtime and do a hot deploy of the application. Also it should be possible to active or deactivate some functionallities by a JMX Bean, like stop or start trace, monitor at bean lavel or method level, activate user monitor at application level, bean level or method level, etc.

    For the moment i only need to apply an aspect (may be with the autoproxy capability) to all the beans with names (for example ending with *-bo and *-dao) or beans extending some interface that indicate the layer (BusinessObject, DataAccessObject, etc)

    The monitoring would possible present information like this
    Code:
    Monitor[example.business.object-saveAllEntities]
       currentExecutions=2
       totalError=1
       minTime=300
       maxTime=1045
       totalExecutions=45
    CTO and Co Founder
    GPI Argentina
    www.gpi.com.ar

  7. #7
    Join Date
    Feb 2007
    Location
    England
    Posts
    71

    Default Spring Modules Caching

    Is there any plan to bring over the Caching component from Spring Modules?

    https://springmodules.dev.java.net/d...tml/cache.html

    Cheers
    Paul

  8. #8

    Thumbs up

    Quote Originally Posted by paulg View Post
    Is there any plan to bring over the Caching component from Spring Modules?


    Cheers
    Paul
    +1

    This is the only module that I already use, but is really good, is worthy to include in Spring Extensions

  9. #9
    Join Date
    Oct 2005
    Location
    Bergen, Norway
    Posts
    128

    Default

    +1.

    Same here - could some springsource people comment on this?
    Put in https://springmodules.dev.java.net/d..._single/#cache ? Or would you require a rewrite?

  10. #10

    Default

    Quote Originally Posted by paulg View Post
    Is there any plan to bring over the Caching component from Spring Modules?

    https://springmodules.dev.java.net/d...tml/cache.html

    Cheers
    Paul
    I would also like to see the caching component moved over to extension

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •