i have more or less the same configuration as you.
A class that extends ServletEndpointSupport, spring-2.0.4.
I don't have this class that extends ServletEndpointSupport in the...
Type: Posts; User: cclafuente; Keyword(s):
i have more or less the same configuration as you.
A class that extends ServletEndpointSupport, spring-2.0.4.
I don't have this class that extends ServletEndpointSupport in the...
I'm trying to use a singleton too, to be added to the server-config.wsdd, as you did, I create a simple bean that extends ServletEndpointSupport and i set this bean in the server-config.wsdd, but it...
i'm working with jetty and tomcat in the development environment, but oc4j is the production environment.
I have a controller that searches for an image in the database, and then show the stream of...
the main problem is the sequence generated id with the oracle sequences.
It doesn't refresh the id of the persistentObject, i save the persistentObject, and the id assigned in the session is X, but...
When i save an object, in the last configuration, i have one value to the sequence of the id, i have an id number 823 and in the database i have saved the object with the id 824.
I think that when i...
if there are a fail during the insert query, the id is a random value that haven't got anything in common with the value that must be due to the sequence, to this issue:
@Id...
i have the next code in my bean to the persistence layer:
class User{
......
@Id @GeneratedValue(strategy=GenerationType.SEQUENCE, generator="gen_USERS")
...
I have the same configuration as you in the sequence user.getId(), but i have one problem, i have another column that must be unique, when in this column i insert a not unique value, the database...
i have a lot of validations annotations by property, i send my code:
....
@NotNull
private Long ssoId;
....
@NotBlank
@Length(min = 1, max = 100)
have you fixed it?
i explain my problem here:
http://forum.springframework.org/showthread.php?p=146194
it's similar than yours.
I'm unable to get the default message to the validations on springmodules, i send my configuration:
in applicationResources.properties, i have
# message errors for the class User...
i run a test inherited from AbstractTransactionalDataSourceSpringContextTests, and the test runs correctly, but i the sequence increments, i have the configuration:
@Id...
because i have this library yet in my application but another version, and this was the main problem, that there were the same classes but with another version.
was delete hibernate-annotations.jar from the lib of jboss/default.
With this my application runs correctly in jboss4.0.3.
I suppose that in next versions of jboss this lib will be actualized.
I...
i have the same problem as you, i need to deploy my war in jboss, i try in another application servers and it works without problems, but with jboss i have the same problem as you, and i don't want...
when i run my application with jetty and the next configuration, isn't there any problem:
in application-ContextDAO.xml:
<!-- Hibernate SessionFactory -->
<bean id="sessionFactory"...
I make a property editor:
public class RolePropertyEditor extends PropertyEditorSupport{
private Manager manager;
/**
* @return the manager
*/
public Manager getManager() {...
I'm using spring and hibernate annotations, i try all the next sentences to set a role to a user:
1. <form:select path="role" items="${roles}" />
2. <form:select path="role.id" items="${roles}"...
Where is this file, when i try to execute the samples i allways have the same problem with the xsd.
I only try to make an example about springmodules annotations validation.
I need help, where in...