Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.02 seconds.

  1. This is probably a little late, but for rapid...

    This is probably a little late, but for rapid development, you can't beat grails. Dynamic,RoR-like, but built on hib/spr/sprmvc,with nice hooks for java.
  2. Replies
    0
    Views
    780

    cglib weirdness...

    I've set some breakpoints in my advice which I can never seem to hit...but if i set proxyTargetClass=true, I get a message in eclipse saying that it can't hit said breakpoint because of missing line...
  3. Can you elaborate on this? Facing the same issues..

    I'm working thru the same issue now, can you post some more code? The one that 'cuts it'?
  4. Replies
    27
    Views
    94,791

    Poll: From SpringMVC to Struts

    I was quite happy working with SpringMVC, and now that I'm working with struts, I have to say that you would not be doing anyone any favors by choosing struts over SpringMVC.

    Forget about...
  5. Thanks, exploring that package, I came across the...

    Thanks, exploring that package, I came across the SingleConnectionDataSource, which seems like a DataSource wrapper around a connection - exactly what I need for the near-term.

    Thanks for your...
  6. using JdbcTemplate with Connection instead of Datasource

    Need to use JdbcDaoSupport with legacy app that's using connections instead of datasources. What's the best approach for this?
  7. What is the order property on PropertyResourceConfigurer?

    No javadocs on the public method, ctrl_shift_g in eclipse doesn't return any references (would that work on a jar in eclipse anyway?).

    Just checked the cvs head - and there's not comments in there...
  8. Replies
    2
    Views
    901

    jbalint, Thanks for the reply. We originally...

    jbalint,

    Thanks for the reply. We originally passed on the PropertyOverrideConfigurer because we need to read our properties from the system, and that functionality seems to be available only in...
  9. Hey Kodos, can you clarify your statement: ...

    Hey Kodos,

    can you clarify your statement:

    How does PropertyPlaceholderConfigurer know to resolve the property ${propertiesFileLocation}? Does it look for a system property called...
  10. Replies
    2
    Views
    901

    Excluding properties.

    I'm using PropertyPlaceholderConfigurer to initialize hibernate. For SQL Server, I need a hibernate.default_schema, for Oracle, I cannot have one.

    If the default_schema property is left out of...
  11. Replies
    2
    Views
    769

    Better to use load if possible for entities. ...

    Better to use load if possible for entities. load checks 2nd level cache, find only populates it (besides associations).
  12. OSIV Filter & TransactionInterceptor not intercepting..

    Using OSIVFilter - came across the common read-only error everyone seems to have when they first use it. I set up a TransactionInterceptor for my hibernate transaction manager, but it doesn't seem...
  13. Replies
    1
    Views
    1,086

    Perhaps more specific: is anyone using a bean...

    Perhaps more specific: is anyone using a bean utility class, or BeanInfo to configure ui properties of their JavaBean domain objects?
  14. Replies
    1
    Views
    1,086

    meta-property beans for ui configuration.

    Anyone have suggestions for a clean ui implementation that would allow a 'ui' javabean to configure a domain javabean? For example, the order to display properties, formatting, visibility?
  15. Replies
    2
    Views
    3,373

    Thanks Alef. I got turned upside down because...

    Thanks Alef. I got turned upside down because the
    <error-page>
    <error-code>404</error-code>
    <location>filenotfound.jsp</location>
    </error-page>
    was returning an empty web...
  16. Replies
    2
    Views
    3,373

    exceptionResolver not resolving

    I'd like to replace the default error page for tc 5.5 in my app. I've
    added an error.jsp page to WEB-INF/jsp, and a SimpleMappingExceptionResolver. I am using JSTL.
    In my log:


    WARN...
  17. https: excel files

    I had this issue (again) when I switched to https.
    Thanks for the solution. This was a big help for me.
  18. Thanks Rob! That did the trick. I actually went...

    Thanks Rob! That did the trick. I actually went with attachment Content-Disposition for this case. The crashes were due to the fact that I am using a template whose author loves the use of...3d...
  19. ExcelView as successView keeps the SimpleFormControllers url

    I'm using SimpleFormController to upload a file and return an ExcelView as the successView. The upload is working and the view is rendering an
    excel file, but the name is the same as formView:

    ...
  20. You can always redirect from a...

    You can always redirect from a SimpleFormController to another
    controller using this in your onSubmit(...):

    RedirectView view = new RedirectView("other.htm");
    return new...
  21. Replies
    5
    Views
    1,232

    Great - I've built the sandbox jar and plan to...

    Great - I've built the sandbox jar and plan to start using this puppy as soon as I can. Thanks for the update.
  22. Replies
    5
    Views
    1,232

    When will Web Flow out of the sandbox?

    Very excited about this project...any dates yet?

    "At present, Spring Web Flow is considered production-quality software,..."
    -Confluence wiki...

    I'm taking this to mean that the developers are...
  23. Or as mentioned, extend HibernateDaoSupport, and...

    Or as mentioned, extend HibernateDaoSupport, and wrap a function around
    getHibernateTemplate().executeFind(...):


    public List find&#40;final int firstResult, final int maxResults&#41; &#123;
    return...
  24. Replies
    6
    Views
    1,342

    Poll: Thanks for the great info Keller. I think this...

    Thanks for the great info Keller. I think this is something that I'll have to keep my eyes on for a while, and choose the best fit on a case-by-case basis.

    As far as css tricks go, I went down...
  25. Replies
    6
    Views
    1,342

    Poll: Keller, that's an interesting read. I'm not...

    Keller, that's an interesting read. I'm not sure what to make of it. According to the text, I am sending tag soup to the parser. But at the sametime, I'm validating all of my documents for...
Results 1 to 25 of 51
Page 1 of 3 1 2 3