We have shifted our project from Google app engine to Apache Tomcat. I have a case scenario in which one client (web/mobile) need to send messages to multiple people depending on task and task-age.
In Google app engine project we made this case scenario possible using endpoint. We made two pojo class one for company and another for employee, in which employee is child of company. I can declare a list of user and a getter and setter method in company pojo class to fetch a company details including all employee working in that company from datastore in single query.
Now I have to perform same thing with MySQL in which one row of company table should also have one field of employee containing information of employee (an array of employee)!!!
How do I capture multiple people (i.e., array of people name) in same filed of a MySQL table??