Search:

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

Page 1 of 12 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    1,050

    JSF and Request Parameter

    Having difficulties getting request parameters when launching a flow with a query string argument.



    <a href="app.html?_flowId=my-flow&id=#{id}">Edit</a>


    Have also tried using a...
  2. Replies
    5
    Views
    1,083

    Good to know...Thanks Karl

    Good to know...Thanks Karl
  3. Poll: I am using Java5

    I am using Java5
  4. Can you post the code of your formBackingObject()...

    Can you post the code of your formBackingObject() method?

    request.getParameter("releaseId") should return you the value on the query string.
  5. Replies
    5
    Views
    1,083

    I had a similar problem and implemented my own...

    I had a similar problem and implemented my own classes.

    Implement UserDetails


    public class User implements UserDetails, java.io.Serializable {

    // Fields

    /**
  6. Thread: AOP - Logging:/

    by cwash5
    Replies
    2
    Views
    2,354

    This problem is similar to this thread. ...

    This problem is similar to this thread.

    http://forum.springframework.org/showthread.php?t=33244

    Essentially this is a limitation with the JDKDynamicProxy and because you are calling a method in...
  7. Replies
    3
    Views
    966

    Check out the solution I provided on this thread....

    Check out the solution I provided on this thread.

    http://forum.springframework.org/showthread.php?t=33118

    Let me know if that helps resolve your issues.
  8. Spring.jar or Spring-remoting.jar

    Spring.jar or Spring-remoting.jar
  9. Replies
    1
    Views
    1,513

    Tiles/SiteMesh is only going to work on the...

    Tiles/SiteMesh is only going to work on the content that is served up by your Application Server (dynamic content). I'm not aware of anyway "out of the box" to decorate static content served up by...
  10. Replies
    2
    Views
    1,185

    If you want to directly serve up this file it...

    If you want to directly serve up this file it needs to be in the root of your Web Content folder (same level as WEB-INF). One thing to be aware of is if your DispatcherServlet has a servlet mapping...
  11. Replies
    5
    Views
    1,209

    Also verify that Hibernate is actually firing the...

    Also verify that Hibernate is actually firing the SQL and trying to interact with the database. I have seen scenarios where you need to flush the session before the end of the test in order to get...
  12. Replies
    4
    Views
    1,341

    FYI... You can also have your Junit(s) subclass...

    FYI... You can also have your Junit(s) subclass AbstractJpaTests. This is farther down the inheritance tree from the class you are using. This class exposes a sharedEntityManager as a protected...
  13. Have you tried using the file: prefix? ...

    Have you tried using the file: prefix? file:/WEB-INF/app-servlet.xml. May need to use the full path to the file.
  14. Can you post your complete config associate with...

    Can you post your complete config associate with the transactionManager and AnnotationSessionFactory?
  15. With Jpa you are dealing with an EntityManager...

    With Jpa you are dealing with an EntityManager instead of a Session. There is a org.springframework.orm.jpa.support.OpenEntityManagerInViewInterceptor and...
  16. Replies
    5
    Views
    1,436

    To get this to work you need to configure a...

    To get this to work you need to configure a JtaTransactionManager. Refer to the doc on how to do this for WebSphere.
    ...
  17. Replies
    14
    Views
    1,865

    Are you populating your bean with the data you...

    Are you populating your bean with the data you want to show in your controller? If so, what method are you overwriting in your controller to do this?

    Usually need to modify the

    ...
  18. Replies
    5
    Views
    1,436

    Just so I understand you....Do you want to...

    Just so I understand you....Do you want to leverage Spring to manage a transaction (start/commit/rollback) and while in this transaction you want to call a Stateless Session bean that participates as...
  19. Replies
    11
    Views
    1,739

    Check out this link... ...

    Check out this link...

    http://jroller.com/page/eu?entry=implementing_efficinet_id_generator

    Also if that doesn't work and you want to leverage hibernate, just check out the source for one of...
  20. Have you tried identifying each...

    Have you tried identifying each applicationContext file declaratively instead of using classpath*



    <context-param>
    <description></description>
    ...
  21. Try removing your Rewrite filter.

    Try removing your Rewrite filter.
  22. When you go to a url that should be secured...

    When you go to a url that should be secured (*.html) does it bounce you to the login page? Just want to see if the Acegi infrastructure is setup correctly.

    It looks like you are getting a 404 on...
  23. Replies
    2
    Views
    1,816

    If you need to process the link with your...

    If you need to process the link with your controller before redirecting then return a ModelAndView using a RedirectView.



    new ModelAndView(new RedirectView("http://www.whereyouwanttogo.com"));...
  24. If using JPA and trying to leverage the JTA...

    If using JPA and trying to leverage the JTA transaction manager you need to make your JPA implementation aware of the JTA Transaction manager. In Hibernate's case here's how that is done.
    ...
  25. I guess what I was trying to say was in Scenario2...

    I guess what I was trying to say was in Scenario2 try this...

    ------------------
    faces-config.xml
    ------------------
    Remove this.....
    <managed-property>...
Results 1 to 25 of 277
Page 1 of 12 1 2 3 4