Disabling startup of a service in Ubuntu

Sometimes is not easy to solve easy problems.
Today, after some research, I found how disable service in Ubuntu… It’s better to fix that, instead to lose more time in a near future.
To disable a service in Ubuntu it’s necessary remove the symlinks from all the runlevel-specific directories, /etc/rc*.d. The command to do that is update-rc.d.
Esample:
ubuntu# update-rc.d -f openvpn remove

reference

YouEat techs

YouEat is an open source application. You can check the code at http://code.google.com/p/youeat/.

YouEat is a Java application built only with open-source software:

  • Apache Wicket, for the web interface
  • Spring Framework is the glue for all the components
  • Hibernate is the JPA implementation
  • Apache Lucene to implement the internal search engine
  • Apache Maven is the dev manager
  • JUnit is test suite
  • PostgreSQL is the database engine

My idea is create an easy to read application… therefore any feedback is well accepted ;-)

JackWicket improvements

ImprovementsI changed a lot on the core of jackwicket.
Pricincipally I moved from the jcr-spring-modules to the new org.springframework.se-jcr.

I also removed the DAO infrastucre and I simplified the implemetation of the service layer. To rebuild the Service Layer I used basically the JcrMappingTemplate, but in order to have a Generic interface I extended this class with JcrMappingTemplateGeneric that offers a type safe implementation of the super class.

You can find some samples in the implementation of the  service layer in JackWicket.

Project website
Demo
Continuous integration (not available)
Code Quality(not available)

P.S.
Thanks Salvo for the technical advice :)