Po raz kolejny organizujemy wakacyjny staż w TouK!

Zapraszamy studentów po 3 roku, w 2 miesiące (1.07-30.08) stworzymy system, wynagrodzenie 3300 brutto/mc.; umowa o dzieło
  • zapraszamy studentów po 3 roku
  • w 2 miesiące (1.07-30.08) stworzymy system
  • wynagrodzenie 3300 brutto/mc.; umowa o dzieło
  • wygodny dojazd
  • dajemy możliwość nauki dobrych praktyk programistycznych od doświadczonych developerów
  • możliwość dalszej współpracy w ciągu roku
  • prześlij CV z opisem ciekawych projektów przy których pracowałeś na uczelni, albo poza nią na adres praca@touk.pl do 26.05 z dopiskiem staż; do 7.06 dostaniesz informację zwrotną
You May Also Like

New HTTP Logger Grails plugin

I've wrote a new Grails plugin - httplogger. It logs:

  • request information (url, headers, cookies, method, body),
  • grails dispatch information (controller, action, parameters),
  • response information (elapsed time and body).

It is mostly useful for logging your REST traffic. Full HTTP web pages can be huge to log and generally waste your space. I suggest to map all of your REST controllers with the same path in UrlMappings, e.g. /rest/ and configure this plugin with this path.

Here is some simple output just to give you a taste of it.

17:16:00,331 INFO  filters.LogRawRequestInfoFilter  - 17:16:00,340 INFO  filters.LogRawRequestInfoFilter  - 17:16:00,342 INFO  filters.LogGrailsUrlsInfoFilter  - 17:16:00,731 INFO  filters.LogOutputResponseFilter  - >> #1 returned 200, took 405 ms.
17:16:00,745 INFO filters.LogOutputResponseFilter - >> #1 responded with '{count:0}'
17:18:55,799 INFO  filters.LogRawRequestInfoFilter  - 17:18:55,799 INFO  filters.LogRawRequestInfoFilter  - 17:18:55,800 INFO  filters.LogRawRequestInfoFilter  - 17:18:55,801 INFO  filters.LogOutputResponseFilter  - >> #2 returned 404, took 3 ms.
17:18:55,802 INFO filters.LogOutputResponseFilter - >> #2 responded with ''

Official plugin information can be found on Grails plugins website here: http://grails.org/plugins/httplogger or you can browse code on github: TouK/grails-httplogger.

OSGi Blueprint visualization

What is blueprint?Blueprint is a dependency injection framework for OSGi bundles. It could be written by hand or generated using Blueprint Maven Plugin. Blueprint file is only an XML describing beans, services and references. Each OSGi bundle could hav...