Skip to main content

Java2Days conference in Bulgaria, Europe 8-9/10/09

Java2Days conference is a brand new event in Eastern Europe to present the latest trends in Java development.

Java2Days will be held at the Inter Expo Center on 8-9 October in Sofia, Bulgaria. The conference is hosted by Insight_technologies and the Bulgarian National Academy for Software Development.

The conference is the first of its kind to be held in Eastern Europe, focused to highlight today’s cutting edge trends in building software applications with Java development tools.

Over two days, more than 600 attendees will meet world famous lecturers, engaged all year round in such events as JavaOne, The ServerSide Java Symposium, Jazoon showcasing their latest knowledge in creating more reliable, scalable and secure solutions using Java technologies in more than 20 technical sessions.

The major purpose of the event is to become a place for passionate Java developers to get in touch with the latest technologies, to become a significant part of the global Java community and to learn from the best.


Registration

Prices

VIP Pass – 175 EUR

VIP Java2Days Pass Includes:

  • Access to all sessions
  • Eco bag with advertising materials
  • VIP promoting gifts
  • Coffee breaks
  • Front row seating
  • DVD with all conference materials, video, photos and etc.
  • Q & A session with the lecturers

Standard Pass – 110 EUR

Standard Java2Days Pass Includes:

  • Access to all sessions
  • Eco bag with advertising materials
  • Coffee breaks
  • Q & A session with the lecturers

You can add to your pass:

Lunch – 10 EUR per day

The buffet lunch is in a separate hall with plenty of salads, different kinds of meats, vegetarian dishes and desserts.

Special dinner on 8th of October – 20 EUR

A dinner at a Bulgarian tavern with live folklore songs and dances. A place where one can meet with the lecturers and developers from different countries in a unique atmosphere tasting the world-famous traditional Bulgarian cuisine and drinks. We promise it will be a great unforgettable experience


You can read more about registration at http://java2days.com/pricing and http://java2days.com/registration

Agenda

Here are the main shortlisted topics that will be presented at Java2Days conference:





SpeakerSession
John WillisJava and the Cloud
Mircea MarkusJBoss clustering solutions
Reza RahmanJava EE 6 Preview
Reza RahmanEJB 3.1 Preview
Reza RahmanSpring and EJB 3 Integration
Reza RahmanRelational Perspectives for Optimizing JPA
Rob HarropModular Web Applications with OSGi
Rob HarropAdvanced Concurrency Techniques
Heath KeslerGWT Tips and Tricks for Beginners
Heath KeslerAdvance GWT Concepts
Josh LongGetting Started with Spring Integration
Josh LongJSF++
Josh LongGetting started with jBPM 4 (and Spring)
Andrew LombardiRapid Application Development with Apache Wicket
Talip OzturkClustering your application with Hazelcast
Bruno BossolaSolid design principles
Vassil PopovskiVMware and Spring Source: Brining Java to the Clouds
George MoykinOracle JRockit – Extreme and Predictable Performance with Java
Anatoli AtanasovBuilding Efficient Application Grids with Oracle Coherence

We will continue to add more new topics and new key speakers to make the conference more valuable for you. So, visit our site and stay tuned with all news about Java2Days.

If you have any questions, ideas or comments, just contact us at info@java2days.com


For news about the conference program and agenda please check out http://java2days.com/agenda and news section of the event http://java2days.com/news

Comments

Popular Posts

Hibernate Generic DAO.

When you use Hibernate and DAO pattern it is a good idea to use a Generic Base Dao. The fallowing code snippet contains GenericDAO that is a base class for all my DAO classes. This GenericDAO uses HibernateDaoSupport from Spring for its implementation if you want you can use JpaDaoSupport or JdbcDaoSupport in your projects. My Generic DAO interface looks like this : package org.joke.myproject.dao.base; import java.io.Serializable; import java.util.List; /** * @author Naiden Gochev * @param <E> * @param <PK> */ public interface GenericDao<E,PK  extends Serializable> {     PK save(E newInstance);     void update(E transientObject);     void saveOrUpdate(E transientObject);     void delete(E persistentObject);     E findById(PK id);     List<E> findAll();     List<E> f...

JavaEE 5 (JSF + JPA + EJB3) using Eclipse

Today I will show you how to create Enterprise Application using Java EE 5 and GlassFish. I will use - Eclipse 3.5 + WTP - GlassFish v. 2.1 - JSF Mojarra implementation. - EJB 3.0. - JPA Toplink essentials implementation. - MySQL No NetBeans or JDeveloper magic involved :) The prerequirement is: Add datasource in glassfish. Read this how you can make this here: http://gochev.blogspot.com/2009/10/creating-datasource-in-glassfish-v-21.html 1) First you need to add glassfish in your eclipse. - Go to Servers View - Right Click, New - Choose GlassFish v 2.1 if you dont have glassfish click on Download additional adapters link choose glassfish wait and restart eclipse. Than try again. 2) Create the database CREATE TABLE ` lesson ` . ` USERS ` ( ` id ` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, ` username ` VARCHAR ( 45 ) NOT NULL , ` password ` VARCHAR ( 45 ) NOT NULL , ` name ` VARCHAR ( 45 ) NOT NULL , PRIMARY KEY ( ` id ` ) ) ENGINE = InnoDB...

Generate JavaDoc with UML diagrams

In my life many times has happened when I am assigned to a totally new project that I have no idea what it is about, that has to go live in 2 weeks and that I have to fix some issues in this ultra strange code sometimes even code written in different language. On my question is there any documentation the answer is: Yes but it is very old or no. So in short they want me to start working on a project with no documentation at all. My second question is is there a javadoc and the anwer is : yeah … kind of … so I am in a project with 30% javadoc with methods in French language for example ( I don’t know even a single word in French) so in short I am loosing 2 weeks to understand what is using what what is the model what is PersonnePhysique  and what is this crazy domain model. I believe this has happened with everyone of you at least once so what can you do ? You can start digging into the java code like crazy ( like everyone of us have tried many times) You can install ...