Hello,
I get this exception on the Android site using RestTemplate.
Caused by: org.springframework.web.client.RestClientException: Could not extract response: no suitable HttpMessageConverter...
Type: Posts; User: BartP; Keyword(s):
Hello,
I get this exception on the Android site using RestTemplate.
Caused by: org.springframework.web.client.RestClientException: Could not extract response: no suitable HttpMessageConverter...
Sorry, I find it.
@Entity
@Table(name="simcardhistory")
@NamedQuery(
name="findSimCardHistory",
query="SELECT s FROM SimCardHistory as s"
)
Hello,
When I try to deploy my application, I get an error like this:
Error in named query: findSimCardHistory: org.hibernate.hql.internal.ast.QuerySyntaxException: SimCardHistory is not mapped...
Ok thanks!
So I add this configuration to my application-context.xml
<int-ip:tcp-connection-factory id="client"
type="client" host="localhost" port="5555" single-use="true"...
Hi,
I want to integrate via Spring integration.
My standalone program connects to a ip address and port.
I write String commands to the socket. For example: "S*1,2,3,4;" always ended with the...
Hello,
I've a controller that return a object. Convert to XML with the Xstream marshaller.
I tryed also with headers = { "Accept=application/xml, text/xml" }, but it always give me the following...
Where can I find the explanation? The web chapter?
Hi,
I'm starting my first project in spring mvc. I used struts before. There is was different I think.
I have a class User contains Collection of Devices.
I want to edit just one field....
I solved the problem :) Now I understand it:
<c:forEach items="${user.devices}" var="device" varStatus="dep">
<tr>
<td>${device.deviceId}</td>
<td>${device.deviceType.name}</td>
...
If I change it to
<td><forms:checkbox path="paid" /></td>
This exception appears:
org.springframework.beans.NotReadablePropertyException: Invalid property 'paid' of bean class...
Hello,
I've a problem to bind a boolean property to a checkbox.
This is my code:
User class
@Entity