Hi Michela, thanks for your reply.
Sure, I understand the autoincrement but only wanted to comment that if the autoincrement could be the reason why you do not add a new person.
When I say that I can not add a new person, it's because when I save (button-link), it deletes the tag values and do not add anything in MySQL database. To verify the operation, I access MySQL through the console and I see my list of persons for my web application, in neither case appears the person added.
It is important to note that operations Update, Delete and Read, works well.
Then, I check the RTXError.log and an exception occurs:
04 Oct 2013 06:02:47,417 ERROR [http-8080-3] (com.webratio.units.operation.rtx.db.CreateUnitService_$$_javassist_53:72) - [5B3DC45A89A43DAABDC22A7960286AD4][cru2]Could not execute service
org.hibernate.exception.GenericJDBCException: could not insert: [com.webratio.webapp.Personas]
at org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:140)
at org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:128)
at org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:66)
at org.hibernate.id.insert.AbstractReturningDelegate.performInsert(AbstractReturningDelegate.java:64)
...
Caused by: java.sql.SQLException: Field 'observaciones' doesn't have a default value
at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1078)
at com.mysql.jdbc.MysqlIO.checkErrorPacket(MysqlIO.java:4190)
...
The structure of Person table is:

Finally, that the MySQL database is the another group working and I'm in another software project, then, I want to use that database and, therefore, should not modify this database structure.
Thank you,
Jose