Skip to main content

Spring one 2gx conference review

Last week I was able to visit the Spring One 4gx conference in Washington, D.C. SpringOne4gx is an annual conference made by Pivotal usually held in September each year but on different location in USA each time.

I have to share that this was the BEST conference I have attended to in my whole life. The conference was taking place at Marriott Marquis which was a cool place, the only big minus was that it was extremely cold, but I believe this is an issue about US in general (very warm outside and cold inside - yes it was strange indeed).

This was my first visit to USA so I had to say that I am not impressed, many poor peoples sleeping on the streets and at least 1 different crazy day each day (shooting with virtual rifle or talking to strangers and etc.) anyway if this is capitalism I don't like it.

About the conference itself: the conference was in 4 days, the first day was mostly only, a keynote and registration + a diner. I have to say that the conference tickets was covering everything breakfast , lunch and diner and since I was there only 2 days more (one day for landing in Washington and 1 day leaving) I actually spend less then 100$. There was a keynote each day after the presentations (weird right?) but this turns out to be awesome since it was during or after diner and before the free sponsored drinks and was amazingly fun watching Josh Long and Dave Sawyer doing live coding while we eat.


The conference had 9 streams, yes thats correct 9! Of course half of them were related to Groovy and Grails so I didn't visited any of them. The slots were 1 hour and 30 minutes long (a lot longer then the regular 45 minutes used in most conferences) and I have to say that I enjoyed this timing, since the presenter was able to show a lot more.

There was no single presentation about what is new in XX, see our new product and so on ... 99% of the topics were about how to do something and 1% was about tricks when using something.

The whole conference was concentrated a lot about Cloud and Micro services and well I do liked a lot of what I saw and defenatly will use Eureka at some point. (google for Service Discovery Eureka).
There were 2 presentations about JavaScript I think and of course they were shown with some sort of spring integration or spring boot backend etc.

The keynote was EVERY night .. every night there was a keynote where, as I said, the live coding part was involving development of an application step by step.

On the second day we had a presentations made by our Petar Tahchiev about building ecommerce with spring. How spring helped us, what was our issues, how to we fixed them and etc. of course 1 hour was not enoughh, but most people liked the presentation.

Here is a photo of our great team:


Also I have to say that there will be videos of everything (except the keynote I guess) in the next 1-6 months available to everyone so search for spring one 4gx videos regularly.

I definitely advice you to visit springone4gx if you can next year, or if you are in Europe like me at least visit the Spring IO conference in Spain which was also quite good.

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 ...