Search:

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

Search: Search took 0.01 seconds.

  1. Replies
    1
    Views
    1,249

    I decided to try and pass a list of Panel objects...

    I decided to try and pass a list of Panel objects to my jsp page. I have verified through debugger that the list is populated and passed on, but the problem I have now is that when it gets to a...
  2. Replies
    1
    Views
    1,249

    Multi-dimensional Arrays

    Here is my delimia. I have three objects that inherit like so:

    public class Brand extends BaseHibernateObject {

    private String name;
    private String shortName;
    private Set products;...
  3. Replies
    1
    Views
    1,118

    What week of the year?

    Next problem. In my project, users can sign up for taste panels. The admin wants the ability to limit the number of panels a user can signup for on a weekly basis. To accomidate this, I have...
  4. Replies
    1
    Views
    1,096

    Oh the humanity!!! Found out that java is really...

    Oh the humanity!!! Found out that java is really picky about upper and lower casing. Apparently this: <%@taglib uri="http://www.springframework.org/tags" prefix="Spring"%>, will not render data...
  5. Replies
    1
    Views
    1,096

    Using spring:bind on jsp

    I want to write some Java code on a jsp page using <%%> tags. What I'm wondering is how do I get to the bound object passed in by spring within the script block?
  6. Replies
    0
    Views
    792

    No data on jsp page using spring:bind

    I've written several forms for a project I'm working on. Up to this point, they all have worked. Now all of sudden, I have one that is not wanting to cooperate. This is what I've got.
    Here is my...
  7. @cwilkes, You are the man!! Thanks for all of...

    @cwilkes,
    You are the man!! Thanks for all of you help. This is what worked (which is pretty much what you wrote with one exception:

    PanelTypePropertyEditor ptpe = new...
  8. i think that's the problem too, b/c when i step...

    i think that's the problem too, b/c when i step through the code in debug mode, it never hits the getters and setters for tpManager. How do I register it so that it does?
  9. Ok, upon further investigating, the class is not...

    Ok, upon further investigating, the class is not recognizing tpManager. When I step through the code in debug mode as soon as it hits that line, it goes to the catch part instaed of stepping into...
  10. @cwilkes, I guess I should have explained that. ...

    @cwilkes,
    I guess I should have explained that. tpManager comes from this:

    Which handles all of my calls to the database (i.e. getPanelTypeById). I don't think that is what is causing my...
  11. @cwilkes, Thanks for the tip, however, I'm still...

    @cwilkes,
    Thanks for the tip, however, I'm still coming up short. This is what I've done:

    I've created my PanelTypePropertyEditor class

    public class PanelTypePropertyEditor extends...
  12. Failed to convert property value of type [java.lang.String]

    First off, let me say that I am new to the whole Java/Hibernate/Spring world. I am working on my first project and I've gotten stuck. Here is my problem. I have two objects, Panel and PanelType....
Results 1 to 12 of 12