Search:

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

Page 1 of 12 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    510

    Great! Thanks.

    Great! Thanks.
  2. Replies
    8
    Views
    510

    That link now says, "This video has been removed...

    That link now says, "This video has been removed by the user". Is there anywhere else I can watch a recording of this?
  3. Revert to a stable version

    Try this instead:


    <dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-jpa</artifactId>
    <version>1.0.3.RELEASE</version>
    </dependency>

    I had the same issue...
  4. Thanks!

    Sounds good. We will do it that way. Thanks Marten!
  5. What is the best way to get our Person into our User using spring jdbcTemplate

    Last night I posted this on stackoverflow. I probably should have asked it here. I have yet to get a response. I just want to know if there is a "best practice" for this. Does anyone have any...
  6. Rob is correct

    Use 3.0.5 and it will fix your problem.
  7. @Secured ("ROLE_ADMIN") not working for me in my controller...

    ...but it is working in my service layer. It has to be something with my configuration but I can't seem to figure it out. Another set of eyes might help:

    security config:

    ...
  8. Replies
    18
    Views
    11,966

    What happens if you do this: ${i.paymentId}...

    What happens if you do this:

    ${i.paymentId}
    instead of this:

    <c:out value="${i.paymentId}"/>
  9. Replies
    18
    Views
    11,966

    Is payment id null? If not what is its value. ...

    Is payment id null? If not what is its value.


    java.lang.NumberFormatException: For input string: "paymentId"
  10. Replies
    18
    Views
    11,966

    Your last response makes me think you are missing...

    Your last response makes me think you are missing this:


    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
  11. Replies
    18
    Views
    11,966

    What do you declare at the top of your jsp....

    What do you declare at the top of your jsp. Something like this?


    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>

    What implementation/version of el do you use?
  12. Replies
    18
    Views
    11,966

    OK, that makes more sense. When you view the...

    OK, that makes more sense. When you view the source of the jsp what does the html look like?

    Like this:


    <tr>
    <td><c:out value="${payments.paymentId}"/></td>
    <td><c:out...
  13. Replies
    18
    Views
    11,966

    I am still confused as to what you mean by...

    I am still confused as to what you mean by combobox? Do you want 6 different combo boxes or are you just having issues with displaying the values on your page. Does the code you posted in your first...
  14. Replies
    18
    Views
    11,966

    So what do you want to show in a combo box?

    So what do you want to show in a combo box?
  15. Replies
    18
    Views
    11,966

    Are you wanting to do something like this: ...

    Are you wanting to do something like this:


    <select>
    <c:forEach var="payments" items="${payObj}">
    <option value="${payments.paymentId}">${payments.paymentType}</option>
    </c:forEach>...
  16. As a general rule should services call other services or access daos directly

    Hopefully my question isn't too confusing. Let me give an example. Let's say I have the following classes: NotificationService, PhotoAlbumService, PhotoService, PhotoAlbumDAO, and PhotoDAO. A user...
  17. Great thoughts. Thank you.

    Great thoughts. Thank you.
  18. Thanks for the response. Lets say you had a...

    Thanks for the response. Lets say you had a ReportService that created reports from an xml file. I could see making the ReportService as an abstract class with two child classes that extend it (ie...
  19. interface vs. abstract class for services and daos

    I seem to remember thinking at one point in time that interfaces were the way to go because I ran into some problem with making one of my services (or dao...I can't remember) an abstract class, but I...
  20. Replies
    1
    Views
    1,021

    I take the lack of response as meaning no there...

    I take the lack of response as meaning no there is not. Should this be reported as a bug?
  21. I'll look into that. Thanks rwinch and Luke for...

    I'll look into that. Thanks rwinch and Luke for your help!
  22. Ok, I know I am the rare case so if I have to put...

    Ok, I know I am the rare case so if I have to put an unused object in there I understand. Is there any way there could be a setting that would indicate I am logging in manually and don't need to...
  23. Good info. My config file now looks like this: ...

    Good info. My config file now looks like this:



    <security:http use-expressions="true" entry-point-ref="authenticationEntryPoint">
    <security:intercept-url pattern="/" filters="none" />...
  24. Sounds good. The problem is if I remove it I get...

    Sounds good. The problem is if I remove it I get the following error(it just doesnt seem like I should have to put in a dummy UserDetailService):



    SEVERE: Exception sending context initialized...
  25. Thank you very much for your quick response. I...

    Thank you very much for your quick response. I will use permitAll. Thanks for clarifying that for me. As for:



    <security:authentication-manager>
    <security:authentication-provider...
Results 1 to 25 of 276
Page 1 of 12 1 2 3 4