Oktobar 7 | ||
Oktobar 9 |
Početkom oktobra se održava konferencija JavaBLEND o Java tehnologijama u Ljubljani i Beogradu koja je namenjena ljudima koji se bave razvojem softvera korišćenjem Java tehnologija. Ako vam reči WebBeans, OpenRemote, Drools i SpringAOP spadaju u opis posla ili interesovanja, ova konferencija u organizaciji firmi Parsek i Housing (Slovenija) i Parsek i ITeam (Srbija) zvuči kao mesto gde ima smisla biti 7. (Ljubljana), odnosno 9. (Beograd) oktobra 2009. godine.
Ljubljana, 7. oktobar 2009. godine
Registration
08:15 – 08:50 Registration: Pick up your pass and grab a coffee
08:50 – 09:00 Welcome to JavaBLEND
Organizers give a warm welcome and explains the aims behind todays event.
Morning Blend
09:00 – 09:55 WebBeans or JSR-299 RI, Pete Muir, JBoss by Red Hat.
JSR-299: Contexts and Dependency Injection for Java EE is an elegant set of new services for Java that draws upon ideas from JBoss Seam and Google Guice. While many of the features provided (dependency injection, contextual lifecycle, configuration, interception, event notification) are familiar, the innovative use of meta-annotations is uniquely expressive and typesafe.
In this session, Pete will introduce how JSR-299: Contexts and Dependency Injection for Java EE enhances the Java EE programming model step by step, and describe how it integrates with existing other Java EE technologies, such as EJB 3.0, JSF, and Servlets.
10:00 – 10:30 OpenRemote, free remoting software, Juha Lindfors
OpenRemote is an open platform for home and building automation. It integrates with existing home automation systems and protocols to create a non-proprietary software for smart homes. You can control your lights, air conditioning, heating, security and audio/video systems with OpenRemote from your iPhone or other smart phones and IP enabled devices.
The goal of the project is to help home owners choose home automation technology that is not locked to a single hardware vendor and proprietary protocols. The new homes should be future-proofed with open protocols and open specifications. This talk explains in more detail what OpenRemote does and how it is achieving the goal of enabling home owners to control and monitor their own homes.
Break
10:30 – 11:00 Break: Refreshments and networking
Midday Blend
11:00 – 11:55 OSGi introduction, Peter Kriens, aQute
The value of modularity is proven by nature and was quickly discovered for software as well. By reducing coupling between the components of an application, applications become more flexible and easier to maintain. Object Oriented (OO) programming took these lessons and applied them to classes by encapsulating their fields. However, it turns out that OO creates designs that are highly coupled on class level; the tangled web of objects problem. This entanglement hinders reuse, complicates maintenance and makes larger applications unnecessary complex.
OSGi has addressed this problem with a specification for strong modularity in Java. This specification is implemented by a number of open source frameworks like Apache Felix, Eclipse Equinox, and Knopflerfish, as well as a number of proprietary frameworks. It is today the foundation of Eclipse, Spring, and impressively all major application servers like Websphere, Weblogic, JBoss, SpringSource, and Jonas.
OSGi solves many of the problems that plague Java. It addresses JAR hell, it speeds up class loading for large applications, it promotes and enables reuse, it allows you to manage your execution environments, makes large applications more transparent, and last but not least it offers a dynamic collaborative programming model. Hot code replacement is not an afterthought but an intrinsic part of the specification due to the service layer.
12:00 – 12:30 Distributed applications, Dušan Omerčević, Najdi.si.
Front-end of the Najdi.si web search engine is currently powered by a monolithic java application. We have decided to gradually break this monolithic application apart and redesign it as a mashup of loosely coupled web services with REST style APIs. Such redesign to web oriented architecture (WOA) will provide us with a set of reusable web services that will enable more efficient support of existing and rapid development of novel web applications. In addition, we plan to allow other publishers to build their web applications by using the same powerful set of reusable web services (e.g., maps, single-sign on, search service, advertising tools) that Najdi.si employs.
Lunch
12:30 – 13:30 Lunch
Afternoon blend
13:30 – 14:25 Managing data on a cloud with Infinispan, Manik Surtani, JBoss by Red Hat.
In this talk, Infinispan founder and JBoss Cache project lead Manik Surtani introduces the role of data grids in today’s cloud-computing environment. The extreme scalability offered by data grids are powering the greatest and most high-profile of today’s applications.
In his talk Surtani covers Infinispan, the new open source data grid platform, and it’s motivations and evolution as a project. Distributed data structures will be discussed in-depth, including strategies of managing and deploying data grids on cloud services such as Amazon AWS by making use of powerful toolkits such as JClouds.
14:30 – 15:00 Workflow orchestration with SpringAOP and AspectJ, Oleg Zhurakousky, SpringSource.
AOP has long being a science of discovering and modularizing cross-cutting concerns which are generally realized in the area of non-functional requirements such as error handling, logging, security, transaction etc…
This session will show another face of AOP, demonstrating how functional processes could be assembled from individual activities implemented as AOP interceptors. Each process instance, represented by a stateful token, passes through a dynamic chain of AOP interceptors and is advised by each one. Functional processes are then quickly and easily assembled from such modules using standard AOP configuration without the use of heavy BPM engines.
This session will consist of few practical examples which are based on the actual requirements of a real system that was implemented using this technique.
Break
15:00 – 15:30 Break: Refreshments and networking
Evening blend
15:30 – 16:25 OpenJDK introduction, Dalibor Topic, Sun Microsystems GmbH.
By now you’ve probably heard of OpenJDK, the open source project created around Sun’s implementation of the JDK, and you’re probably wondering what it’s all about, how OpenJDK is made, where it’s headed, who’s working on what, and how to participate.
In this talk, the audience will learn about the web of projects under the OpenJDK umbrella, ranging from new JVM features for dynamic languages, to Java language changes, as well as projects working on ports to new operating systems, CPU architectures, and adding new features.
16:30 – 17:00 The Feel Of Google Guice, Alen Vrečko, Sinergise
Wondering how to make your code more testable, maintainable and with reduced boilerplate code? If affirmative then this talk is for you.
We will examine on a simple-yet-real-world example how Guice helps us achieve the above. Guice is a dependency injection framework. Therefore a great portion of the talk will deal with Dependency Injection but not limited to. Starting with reducing the boilerplate associated with factories and looking how Guice made the code more testable. Arguably our code will also be more maintainable compared to alternative approaches. We will complete the example by examining the front-end code which also uses Guice. Integration with back-end will also be presented.
After the talk you will have a broad overview of what is possible with Guice.
Beverages, snacks and networking
17:00 – 20:00
Beograd, 9. oktobar 2009. godine
Registration
08:15 – 08:50 Registration: Pick up your pass and grab a coffee
08:50 – 09:00 Welcome to JavaBLEND
Organizers give a warm welcome and explains the aims behind todays event.Morning Blend
09:00 – 09:55 OSGi introduction, Peter Kriens, aQute
The value of modularity is proven by nature and was quickly discovered for software as well. By reducing coupling between the components of an application, applications become more flexible and easier to maintain. Object Oriented (OO) programming took these lessons and applied them to classes by encapsulating their fields. However, it turns out that OO creates designs that are highly coupled on class level; the tangled web of objects problem. This entanglement hinders reuse, complicates maintenance and makes larger applications unnecessary complex.
OSGi has addressed this problem with a specification for strong modularity in Java. This specification is implemented by a number of open source frameworks like Apache Felix, Eclipse Equinox, and Knopflerfish, as well as a number of proprietary frameworks. It is today the foundation of Eclipse, Spring, and impressively all major application servers like Websphere, Weblogic, JBoss, SpringSource, and Jonas.
OSGi solves many of the problems that plague Java. It addresses JAR hell, it speeds up class loading for large applications, it promotes and enables reuse, it allows you to manage your execution environments, makes large applications more transparent, and last but not least it offers a dynamic collaborative programming model. Hot code replacement is not an afterthought but an intrinsic part of the specification due to the service layer.
10:00 – 10:30 OpenRemote, free remoting software, Juha Lindfors, OpenRemote
OpenRemote is an open platform for home and building automation. It integrates with existing home automation systems and protocols to create a non-proprietary software for smart homes. You can control your lights, air conditioning, heating, security and audio/video systems with OpenRemote from your iPhone or other smart phones and IP enabled devices.
The goal of the project is to help home owners choose home automation technology that is not locked to a single hardware vendor and proprietary protocols. The new homes should be future-proofed with open protocols and open specifications. This talk explains in more detail what OpenRemote does and how it is achieving the goal of enabling home owners to control and monitor their own homes.
Break
10:30 – 11:00 Break: Refreshments and networking
Midday Blend
11:00 – 11:55 WebBeans or JSR-299 RI, Pete Muir, JBoss by Red Hat.
JSR-299: Contexts and Dependency Injection for Java EE is an elegant set of new services for Java that draws upon ideas from JBoss Seam and Google Guice. While many of the features provided (dependency injection, contextual lifecycle, configuration, interception, event notification) are familiar, the innovative use of meta-annotations is uniquely expressive and typesafe.
In this session, Pete will introduce how JSR-299: Contexts and Dependency Injection for Java EE enhances the Java EE programming model step by step, and describe how it integrates with existing other Java EE technologies, such as EJB 3.0, JSF, and Servlets.
12:00 – 12:30 Distributed applications, Dušan Omerčević, Najdi.si.
Front-end of the Najdi.si web search engine is currently powered by a monolithic java application. We have decided to gradually break this monolithic application apart and redesign it as a mashup of loosely coupled web services with REST style APIs. Such redesign to web oriented architecture (WOA) will provide us with a set of reusable web services that will enable more efficient support of existing and rapid development of novel web applications. In addition, we plan to allow other publishers to build their web applications by using the same powerful set of reusable web services (e.g., maps, single-sign on, search service, advertising tools) that Najdi.si employs.
Lunch
12:30 – 13:30 Lunch
Afternoon blend
13:30 – 14:25 Managing data on a cloud with Infinispan, Manik Surtani, JBoss by Red Hat.
In this talk, Infinispan founder and JBoss Cache project lead Manik Surtani introduces the role of data grids in today’s cloud-computing environment. The extreme scalability offered by data grids are powering the greatest and most high-profile of today’s applications.
In his talk Surtani covers Infinispan, the new open source data grid platform, and it’s motivations and evolution as a project. Distributed data structures will be discussed in-depth, including strategies of managing and deploying data grids on cloud services such as Amazon AWS by making use of powerful toolkits such as JClouds.
14:30 – 15:00 Workflow orchestration with SpringAOP and AspectJ, Oleg Zhurakousky, SpringSource.
AOP has long being a science of discovering and modularizing cross-cutting concerns which are generally realized in the area of non-functional requirements such as error handling, logging, security, transaction etc…
This session will show another face of AOP, demonstrating how functional processes could be assembled from individual activities implemented as AOP interceptors. Each process instance, represented by a stateful token, passes through a dynamic chain of AOP interceptors and is advised by each one. Functional processes are then quickly and easily assembled from such modules using standard AOP configuration without the use of heavy BPM engines.
This session will consist of few practical examples which are based on the actual requirements of a real system that was implemented using this technique.
Break
15:00 – 15:30 Break: Refreshments and networking
Evening blend
15:30 – 16:25 Alfresco, Branko Milosavljević, Faculty of technical sciences Novi Sad
16:30 – 17:00 Aplication testing, Boris Zelenkapić, VDEL Gmbh
You have to choose testing framework or switching from JUnit3 to something new. JUnit is de facto standard but seems like fighting to keep position. TestNG was made with intention to overcome limitations of JUnit. It has inaugurated clever use of annotations in the world of testing. For some time already we have a response from JUnit with JUnit4. What is situation today?
This session will cover both frameworks, presenting pros and cons with overall talk about testing Java applications.
Beverages, snacks and networking
17:00 – 20:00 End of show: Refreshments and networking
Detaljne infromacije o predavačima možete pogledati ovde i ovde.
Regularna kotizacija za ovu konferenciju u Ljubljani iznosi 200 evra, a 70 evra ukoliko ste učenik/student, odnosno 8.900 dinara (regularna/učenici/studenti) za beogradsku verziju, naravno cene bez PDV-a.
Prijavite se za 7. oktobar (Ljubljana) ili 9. oktobar (Beograd).
Ljubljanska tvrđava (Ljubljana), odnosno hotel President (Beograd). Na prvom linku ćete naći korisne informacije vezane za događaj u Sloveniji, valjda će i beogradska varijanta biti uskoro obogaćena podacima.
Tags: java, programiranje, region, stručni skupovi, web development
Autor: Vladimir Trkulja
RSS feed for comments on this post · TrackBack URI
Postavi komentar