You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
If I add a Post method in controller with parameter I am getting below exception.
@Controller
@Path("/user")
public class UserController {
@Post
@Path("new")
public void submitNew(UserModel user){}
}
public class UserModel{
private String name; //getter and setter
private String userName;//getter and setter
private String password;//getter and setter
}
Environments: JDK : 1.8
Wildfly 10.01
java.lang.IllegalStateException: Converter class br.com.caelum.vraptor.converter.ByteConverter have same priority than class br.com.caelum.vraptor.converter.ByteConverter
com.google.common.base.Preconditions.checkState(Preconditions.java:469)
The text was updated successfully, but these errors were encountered:
Hi,
If I add a Post method in controller with parameter I am getting below exception.
Environments:
JDK : 1.8
Wildfly 10.01
java.lang.IllegalStateException: Converter class br.com.caelum.vraptor.converter.ByteConverter have same priority than class br.com.caelum.vraptor.converter.ByteConverter
com.google.common.base.Preconditions.checkState(Preconditions.java:469)
The text was updated successfully, but these errors were encountered: