Search:

Type: Posts; User: virtual.havoc; Keyword(s):

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    1,390

    :rolleyes: Silly me. I made some modifications...

    :rolleyes:

    Silly me. I made some modifications to the working code before I posted it.



    for (Task task : user.getTasks()) {
    log.error(task.getProject() + " " + task.getName());
    }
  2. Replies
    3
    Views
    1,390

    Dynamic Web Remoting

    Hi guys,

    I've got DWR integrated with my spring / hibernate project. But for some reason after re-factoring code I get a lazy loading exception to some completely ORM mapping!

    Before - Working...
  3. Replies
    3
    Views
    890

    Thanks for the quick reply. How you mention...

    Thanks for the quick reply. How you mention breaking it down gives me an idea.

    Since we don't have to inherit Validator anymore, it could be validated using two seperate blocks of validation.

    ...
  4. Replies
    3
    Views
    890

    edit user details page

    Hi all,

    I'm trying to design a page where the user can edit there details. But I've hit a validation problem. I'm using a single UserValidator for both the registration page and the edit details...
  5. Replies
    6
    Views
    2,079

    Hi Marten, I tried sending you a message with...

    Hi Marten,

    I tried sending you a message with my code but it seems I'm not allowed too.

    To be honest I think I never did have a problem in the first place!



    User user =...
  6. Increase memory size? In the run.bat (or .sh) ...

    Increase memory size?

    In the run.bat (or .sh) start up file

    Change the following line:


    set JAVA_OPTS=%JAVA_OPTS% -Xms512m -Xmx1024m
  7. Replies
    6
    Views
    2,079

    Thank you for your continued efforts in my...

    Thank you for your continued efforts in my problem.

    I used to have three xml files with spring related configuration

    I've moved them all into one big applicationContext.xml, the...
  8. Replies
    6
    Views
    2,079

    Other forum posts left me even more confused...

    Other forum posts left me even more confused :rolleyes:

    Here is missing information.

    applicationContext-hibernate.xml



    <!-- Configurer that replaces ${...} placeholders with values from a...
  9. Replies
    6
    Views
    2,079

    OpenSessionInViewFilter

    Hey guys,

    I'm trying to implement OpenSessionInViewFilter because i'm getting a lazy loading exception in my jsp's, but i've spent 3 days on it and im getting nowhere:(

    I've set up the...
  10. I'm hitting a similar problem. It could be due...

    I'm hitting a similar problem.

    It could be due to do with multiple sessions somehow being loaded. I get loads of duplicate start up messages.



    2010-01-26 21:19:47,887 INFO...
  11. Replies
    5
    Views
    1,914

    Thanks for the reply. This is basically what I...

    Thanks for the reply. This is basically what I will be using

    (Based of hibernate code)
    GenericDao


    public interface GenericDao<T, ID extends Serializable> {

    T findById(ID id, boolean...
  12. Replies
    5
    Views
    1,914

    Hibernate Dao design question

    Hi guys,

    Im a student who's new to both spring and hibernate, I'm building my website Dao based this site

    eg



    public class UserDAOImpl implements UserDAO {
Results 1 to 12 of 12