Java’s persistence API (JPA) makes object-relational mapping very convenient. Using Hibernate, tables and sequences are generated automatically which speeds up development significantly. However, in production systems automatic schema creation isn’t desired. In many cases you would want to tune the schema a bit, like adding an index for speeding up common access paths, renaming constraints [...]
Archive for June, 2007
Generating DDL Scripts with Maven
June 30, 2007Mounting Directories via SSH
June 7, 2007For mounting directories from a remote machine, usually NFS or SMB/CIFS is used which requires a running file server. On many linux servers, however, all you have is a shell account, so file transfer has to be done via scp.
Using the FUSE Linux kernel module, which provides user space filesystems and its sshfs client, you [...]