Great! Thanks.
Type: Posts; User: testing123; Keyword(s):
Great! Thanks.
That link now says, "This video has been removed by the user". Is there anywhere else I can watch a recording of this?
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...
Sounds good. We will do it that way. Thanks Marten!
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...
Use 3.0.5 and it will fix your problem.
...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:
...
What happens if you do this:
${i.paymentId}
instead of this:
<c:out value="${i.paymentId}"/>
Is payment id null? If not what is its value.
java.lang.NumberFormatException: For input string: "paymentId"
Your last response makes me think you are missing this:
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core_rt" %>
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?
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...
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...
So what do you want to show in a combo box?
Are you wanting to do something like this:
<select>
<c:forEach var="payments" items="${payObj}">
<option value="${payments.paymentId}">${payments.paymentType}</option>
</c:forEach>...
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...
Great thoughts. Thank you.
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...
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...
I take the lack of response as meaning no there is not. Should this be reported as a bug?
I'll look into that. Thanks rwinch and Luke for your help!
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...
Good info. My config file now looks like this:
<security:http use-expressions="true" entry-point-ref="authenticationEntryPoint">
<security:intercept-url pattern="/" filters="none" />...
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...
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...