java - Saving large text in CLOB with Wicket -


i want store large text in database. created clob field description in table , added hibernate like:

@column private byte[] description; 

in wicket added textarea this:

add(new textarea<object>("advisor.descriptionclob")); 

when click on ajaxsubmitlink nothing happens (no code @ gets executed), bit confusing me, since wicket shouldn't care database type use?

has idea what's going on here , how fix this?

i use wicket 6.9.1, hibernate 4.1.7 , mysql database


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

c# - WPF+EF - The operation cannot be completed because the DbContext has been disposed -

jsf - How to ajax update an item in the footer of a PrimeFaces dataTable? -