JTable Plugin Ajax CRUD

Eai Pessoal estou tentando fazer a utilização deste Plugin www.jtable.org com um SGBD , estou meio perdido pois não conheço muito sobre java :blush:
estou usando Java Service Face , Hibernate …

segue abaixo Function

  <script type="text/javascript">
        $(document).ready(function () {
            $('#StudentTableContainer').jtable({
                title: 'Student List',
                paging: true,
                sorting: true,
                defaultSorting: 'Nome ASC',
                actions: {
                     listAction:   '/CadastroclienteJpaController/findCadastroclienteEntities',
                     //deleteAction: '/CadastroagendaJpaController/DeleteStudent',
                     // updateAction: '/CadastroagendaJpaController/UpdateStudent',
                     createAction: '/CadastroclienteJpaController/create'
                },
                fields: {
                    IdCliente: {
                        key: true,
                        create: false,
                        edit: false,
                        list: false
                    },
                    Nome: {
                        title: 'Nome',
                        width: '23%'
                    },
                    Idade: {
                        title: 'Idade',
                        list: false
                    }
                }
            });
        });
    </script>