Warsztaty technologiczne także dla studentów

Zapraszamy studentów! temat: Oracle – budowa, działanie, cechy szczególne; 8.03 godz. 15:30; miejsce: biuro TouK;

warsztatyPiątki u nas to dzień poświęcony w części na naukę. Bardziej lub mniej regularnie odbywają się spotkania podczas, których developerzy TouK opowiadają o narzędziach, ciekawostkach dotyczących developmentu i nowych technologiach, których się nauczyli.
W tym tygodniu zapraszamy studentów!
Najbliższe spotkanie 8.03 o godzinie 15:30 poprowadzi Marek Pettka, miejsce: biuro TouK al. Bohaterów Września 9; temat: Oracle – budowa, działanie, cechy szczególne.
Ilość miejsc jest ograniczona dlatego zainteresowanych proszę o maila do środy 6.03 (do końca dnia) na adres: mzb@touk.pl. Oczekujcie odpowiedzi z informacją czy jest jeszcze miejsce.
PS. Jeżeli pomysł się sprawdzi będziemy na blogu informować o następnych spotkaniach.

Zapraszam!

You May Also Like

Spring Security by example: securing methods

This is a part of a simple Spring Security tutorial:

1. Set up and form authentication
2. User in the backend (getting logged user, authentication, testing)
3. Securing web resources
4. Securing methods
5. OpenID (login via gmail)
6. OAuth2 (login via Facebook)
7. Writing on Facebook wall with Spring Social

Securing web resources is all nice and cool, but in a well designed application it's more natural to secure methods (for example on backend facade or even domain objects). While we may get away with role-based authorization in many intranet business applications, nobody will ever handle assigning roles to users in a public, free to use Internet service. We need authorization based on rules described in our domain.

For example: there is a service AlterStory, that allows cooperative writing of stories, where one user is a director (like a movie director), deciding which chapter proposed by other authors should make it to the final story.

The method for accepting chapters, looks like this:

Read more »