Search:

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

Search: Search took 0.02 seconds.

  1. Thanks for your reaction Johannes. I am going to...

    Thanks for your reaction Johannes. I am going to have a look at hibernate fetching profiles, cause I am not familiar with them yet. Would you mind to explain why going with XML will work rather than...
  2. Thought it might be useful to also post the...

    Thought it might be useful to also post the service method and DAO that fetches the entity. Sorry for double posting, but there has been a post length constraint that didn't allow me to add it to the...
  3. Lazy Load loosing session in JSON conversion (jackson)

    Alright, first off I know the topic has been discussed before. I've been googling and browsing the forums for three days and haven't found a suitable solution yet. I am trying to build a web app that...
  4. Replies
    4
    Views
    1,490

    I'd have a look at how facebook realizes the chat...

    I'd have a look at how facebook realizes the chat and news stream functionality. You can see some rather interesting AJAX calls in Firebug (Firefox Debugging Plugin). It has a Javascript Function...
  5. Nobody does that. That's a nightmare solution. ...

    Nobody does that. That's a nightmare solution.

    You need to implement a session that identifies the user, and an ACL which holds the objects a user is entitled to access. There is no reason why...
  6. Concerning best practices

    Hmm I'd do neither nor. I would have my Entities which contain data AND relationships. The definition of a service instead should be to implement a business function or process.

    So my structure...
  7. First off by my corporate guidelines I have to...

    First off by my corporate guidelines I have to state that I work for IBM.

    The decision to choose an enterprise class application server as the WebSphere Application server is most commonly driven...
  8. In the meantime I found a promising approach. One...

    In the meantime I found a promising approach. One might tackle this problem by introducing a versioning concept. The @Version annotation helps to manage the state of the record.

    Thus if there is a...
  9. Conceptual Question Locking and Transactions Webapp

    Hi Guys,

    I do have a conceptual question and don't know what to google/search for as I don't have any approach yet. Let me try to explain my problem by example.

    Imagine a full flavoured web...
  10. Replies
    0
    Views
    724

    Best Practice Formular Handling

    Hello,

    this is propably a fairly simple question. I started implementing the MVC concept and added a Controller to create business objects. Now the functionality "edit" has to be implemented.
    ...
  11. Replies
    12
    Views
    1,463

    Thank you a lot, I would never have solved this...

    Thank you a lot, I would never have solved this problem myself... propably because I am a newby in spring and all the related technologies :-)
  12. Replies
    12
    Views
    1,463

    It works!!!! It woks!!!! Vincent I love you!!!!

    It works!!!! It woks!!!! Vincent I love you!!!!
  13. Replies
    12
    Views
    1,463

    vincent, great job! so let's solve the problem....

    vincent, great job! so let's solve the problem. this is the configuration of the controller:



    <bean id="insertMovieController" class="net.byte23.opencinema.controller.MovieInsertController">...
  14. Replies
    12
    Views
    1,463

    What makes me a little bit curious is that there...

    What makes me a little bit curious is that there is no log output from GenericDaoImpl... This seems not to be called at all and thus the problem must rely in the MovieServiceImpl, which is the last...
  15. Replies
    12
    Views
    1,463

    Yes, line 23 causing the exception is: ...

    Yes, line 23 causing the exception is:


    this.movieDao.persist(film);

    calling the GenericDaoImpl with the following method:



    public void persist(T object) {
  16. Replies
    12
    Views
    1,463

    It has, yes. Here is the MovieServiceImpl.java...

    It has, yes.

    Here is the MovieServiceImpl.java Code:



    public class MovieServiceImpl implements MovieService {
    // MovieDao via Dependency Injection
    private MovieDao movieDao;
  17. Replies
    12
    Views
    1,463

    Hibernate Emergency

    Hi Guys,

    I am currently stuck in development. I have to do a project in University using Spring Web MCV and Hibernate for presistence (MySQL backend). Could you please help me out ouf my misery, I...
  18. Replies
    19
    Views
    17,391

    Yeah, nice idea!

    Yeah, nice idea!
Results 1 to 18 of 18