Blog

Have you ever felt like you are the smartest Java dev in your team? In the world?

Quantifying this sort of superiority can be completed in only one way (two, if you count dueling): the quiz challenge…

Test your grey matter with ZeroTurnaround’s TopGeek Quiz challenge on Java know-how.

Ping your friends with your score. Brag shamelessly. Show off your Java-fu.

May the force be with you,
Top Geek

*p.s. a randomly selected winner with all answers correct will win 2 full conference passes to JavaOne 2012 – San Francisco (or another conference of your choosing).

If you’ve been following the progression of LiveRebel over the last year, then you’ve seen some major improvements and advancements in deployment features, user interface and general experience. Now we take it a step further to get down and dirty in Continuous Delivery, teaming up with Atlassian’s popular Bamboo CI tool. Check out the Bamboo-LiveRebel how-to article for gettings started.

This new plugin is pure ball lightning (yeah, like Tesla-style), harnessing the powers of Bamboo, Atlassian’s continuous integration and release management product, with LiveRebel, ZeroTurnaround’s revolutionary application and server management solution for end-to-end application lifecycle management. (Check out this super-fast video below, then visit our documentation page for more):

Bamboo is used to check out source code, build, package and test new application versions. LiveRebel comes into play a step later, deploying and updating the running applications with the just-built version. LiveRebel automates the application deployment process, and lets users choose between update methods, including instant hotpatching without breaking user sessions, something yet to be seen in the market.

With Bamboo & LiveRebel, DevOps harmony is truly emphasized: you can go from deployment to continuous updates of your JEE applications using your favourite JEE application server. It’s like wrapping bacon around a Ferrari driven by Honey Badger. It’s fast and fierce with your app updates, and leaves a mighty good aftertaste too. It’s great to see these two very cool products together!

It’s been a crazy three months for us since the LiveRebel 2.0 release and we might not have been as diligent with the release announces as we could be. Since we are big proponents of Continuous Delivery we also apply it to our own products and so we kept cranking out fixes and new features every 1.7 weeks or so. But now is a good moment to look back and reflect.

The biggest change since LiveRebel 2.0 is the new look and feel that we applied in 2.0.7. We were working on it before 2.0, but it took as a while to make it into a truly great experience. We tried to have an overview available at all times and get away with as few clicks as possible. The key function of LiveRebel — running updates — is boiled down to just a couple of choices and yet supports multiple rollout strategies and any kind of complex rollout you could think of:

Obviously there is a lot more to LiveRebel than pretty looks, under the cover we have worked to be sure that it is and continues to be rock solid stable and compatible with the variety of Java environments. As a testament to this most of our LiveRebel 1.x users have by now upgraded to the 2.x release and couldn’t be happier. Check out the changelog for the full list of changes or just go ahead and download the new version right away.

The Tools & Tech Leaderboard for 2012 shows…

We’re not much for fanfare here at ZeroTurnaround, but this is our most ambitious report that we’ve ever created. This year, over 1800 respondents shared their take on “the developer life” with us, with 1100 Java-focused surveys completed.

Want to know how much uptake Java SE 7 has seen since its release? Which IDE has grown most in user base since last year? Which application server has jumped 300% in popularity by Java developers since 2011? You’ll also get the latest numbers on Oracle WebLogic, IBM WebSphere, Eclipse, JBoss, Jenkins/Hudson, Maven, Subversion and Tomcat (alert: shameless SEO plug). It’s all in there!

In addition, we take a shot at questions like, “How do Java developers spend their work week?” and “What aspects of the coding life increase or decrease efficiency at work?” Sound good? Then sign up to get the full report!

Digging into data searching for insights is always an exciting activity. Last year’s Java EE Productivity Report 2011 was focused on tools/technologies/standards in use (exclusive selections) and turnaround time in Java (i.e. how much time is spent per hour redeploying/restarting).

This year, you will find in the full version of the Developer Productivity Report 2012 expanded coverage on technologies and tools used by Java development teams.

We also focused more on the abstract side of development. We wanted to know “What makes developers tick?” and learned a lot more about how the developer lifestyle. Our results include a lot of interesting trends and insights, so we broke them down into 4 parts:

  • Part I: Developer Tools & Technologies Usage Report – coverage of Java versions, JVM languages, IDEs, Build Tools, Application Servers (containers), Web Frameworks, Application (server-side) Frameworks, JVM Standards, Continuous Integration Servers, Front End Technology, Code Quality Tools, Version Control Systems
  • Part II: Developer Timesheet – How do devs spend their work week?
  • Part III: Developer Efficiency – What aspects of your job make devs more/less efficient?
  • Part IV: Developer Stress – What keeps devs awake at night?

Get the complete Developer Productivity Report 2012

It’s probably best to sign up to get the full Developer Productivity Report 2012, which includes the complete Developer Tools & Technologies Report, the Developer Timesheet Report, Developer Stress Report and the Developer Efficiency Report.

Job chaining in Jenkins is the process of automatically starting other job(s) after the execution of a job. This approach lets you build multi-step automation pipelines or trigger the rebuild of a project if one of its dependencies is updated. In this article, we will look at a couple of plugins for Jenkins job chaining and see how to use them to build and visualize these pipelines.

Out of the box solution – Build Other Projects

Jenkins has a built-in feature to build other projects. It is in the Post-build Actions section. You can specify the projects that you want to build after this project is built (you can trigger more than one). So whenever project A is built you will trigger the building of project B. You can also specify the conditions when the other jobs are built. Most often you are interested in continuing with the pipeline only if the job is successful but your mileage might vary.

One thing to remember here is that this feature has two configuration location. You can configure project A and specify a post action as in the previous screenshot. Another option is to configure this from project B and say “build this project B only after project A is built”. You don’t have to fill out both, just change one and the other is updated. See the next screenshot for the second option.

Build Pipeline Plugin

Build Pipeline Plugin is one interesting plugin. The main features of this plugin is to provide visualization of the pipeline and also to provide manual trigger for continuous delivery purposes. The configuration is a separate Post Build action where you can configure which projects should be built after project A. By default the triggering is actually done manually by the end user! If you want certain steps of the pipeline to be automatic then you have to use the built-in job chaining (see the Out of the Box Solution for more details).

The pipeline plugin offers a very good visualization of the pipeline. By configuring a new Jenkins view and choosing which job is the first job in the pipeline you can get a visualization of the whole pipeline. In the screenshot, be sure to note that one of those steps is manual and the result are automatic. The manual one can be triggered from the very same view.

Parameterized Trigger Plugin

The Parameterized Trigger Plugin is another triggering plugin but with a twist: this plugin lets you configure more aspects of the triggering logic. It covers the basic Out of the Box Solution features and adds many more. The most important one is the option to trigger the next build with parameters. For example, by defining SOURCE_BUILD_NUMBER=${BUILD_NUMBER} you are able to use the variable $SOURCE_BUILD_NUMBER in project B. This way you can, for example, use the artifact built in the previous job to be fetched from your central artifact repository using the ${BUILD_NUMBER}.

Downstream Buildview Plugin

The Downstream Buildview Plugin plugin that does not do job chaining itself, but provides a means to visualize the pipeline. Similar to the Build Pipeline View but more dynamic. You can click on any item in the build history and have its pipeline visualized.

Conclusions

The main feature that makes Jenkins so good is that there is always an app plugin for what you need. Of course, the same fact also highlights its biggest weakness. It is rather difficult to choose the correct plugin and very often you need a couple of plugins to achieve your goal. The same is true for job chaining and visualization.

The job chaining features that we covered in this post all provide the minimum functionality – triggering other jobs. The Parameterized Trigger plugin is the most feature-rich, but lacks the manual triggering. The Build Pipeline only offers manual triggering and you need to figure out automatic triggering yourself (using the built-in feature for example).

From the visualization side, the Build Pipeline plugin is definitely the best looking. At the same time, the plugin does not support passing parameters (the latest alpha build is a bit better) and once the pipeline gets long it gets a bit ugly. We do like the part of defining a separate view and then always being on top of your pipeline. The Downstream Build View plugin gives you great flexibility and insight to job chaining, but does not enforce any kind of process.

So, there are the Jenkins plugins that we use at ZeroTurnaround for job chaining and visualization. DO you use the same tools? If not, can you recommend any others? Which are your favorites? Please leave comments below!

This week we released a new minor version of JRebel. You can download the latest version of JRebel right now.

The new version includes a number of bugfixes and improvements for GWT, Tiles, Spring, Liferay, JBoss, etc. See the changelog for the full list of additions.

There’s one very specific fix that concerns Spring users: for the <include> directives in Spring XML configuration files, if the included resources are specified using wildcards (*), given there’s multiple resources with the same name, the things didn’t work quite well.

The current release now includes a small fix, which is actually disabled by default, that tries to fix the aforementioned shortcoming. The feature is enabled using -Drebel.spring.classpath_classloader_delegate=true VM argument.

We’re still working on JBoss 7 CDI integration making it more stable with every release. Hopefully we can cover all the use cases, and we’re looking for the users’ feedback!

Download the latest version of JRebel today!

Last week was a great week for ZeroTurnaround. On Monday we grew by 10% head count wise and I plotted the trend. It was humongous. My calculations showed that we will reach 600 billion people by the end of the year. This introduced a lot of questions and couple of interesting threads. Also it meant that our first intern ever hired had a lot more on his plate than first expected. I’ve compiled one of the public threads just for you guys. It tells you how and why we have a document Will ZeroTurnaround reach Gravitational Singularity and also to state that we actually don’t pack people together 100% flesh to flesh.

ZeroTurnaround and Red Hat’s JBoss teams have been spending a lot of time working to make Java faster, more efficient and more community-based. We already support the JBoss Forge team with free JRebel OSS licenses, and now we see that the JBoss Arquillian team has started to see the real value in cutting out redeploys in development using JRebel.

JBoss Arquillian is an awesome tool for integration testing of enterprise Java applications brought by JBoss folks to the community. It enables real in-container testing with no mocks, and writing the tests is made very simple, just like if you would write ordinary unit tests.

Even though Arquillian improved integration testing experience a lot, it still deploys the test suite to a container, and doing that repeatedly leads to the problem that JRebel fights against, avoiding restarts and redeploys. With the brand new JRebel extension for Arquillian the tests are deployed only at the first execution, and for the repetitive runs JRebel kicks in and updates the test and application code in the running container.

Arquillian 1.0.0. final was released just recently and some splendid news were announced last week: a special JRebel extension was added to Arquillian project.

Source code is available at Github: https://github.com/arquillian/arquillian-extension-jrebel
And you can track the progress in the dedicated JIRA: https://issues.jboss.org/browse/ARQ/component/12315771

P.S. Arquillian guys: if you need any more free JRebel licenses, write to oliver@zeroturnaround.com

We’ve been getting a lot of sweet coverage lately. Maybe it’s our most recent award for LiveRebel at EclipseCon 2012, or the fact that we’ve hit up a pretty hardcore conference circuit already in 2012. Either way, it’s always good to get love from Basement Coders, InfoQ and JAX :-)

Basement Coders

The guys at Basement Coders are some of the most fun people to hang with in the Java industry (and they even gave this simple marketing droid a shout out on their website). They rocked out a funny, fierce podcast with Jevgeni that stretched for nearly an hour, and garnered no small amount of energetic feedback in the comments area. The main topic, outside of ZeroTurnaround’s product news, was OSGi, or, as Craig put it, “OSG-why?”. Not a bad question!

Look forward to seeing you guys at JavaOne 2012 :-)

Check out Basement Coder’s Episode 52 – JRebel, LiveRebel and OSGi with Jevgeni Kabanov

InfoQ

InfoQ’s Charles Humble and fearless leader Jevgeni Kabanov had a nice interview during QCon London about JRebel, LiveRebel and some of the challenges faces Devs and Ops teams these days. Click on the picture below to get to InfoQ’s interview with ZeroTurnaround CEO Jevgeni Kabanov

JAX Conference – Mainz, Germany

Toomas, our Director of Engineering and Founder, once told me he couldn’t handle German conferences any more because the 13-hour exhibitor and conference schedule was a little too rough. So what if both Toomas and Anton (our JRebel Product Lead), both gave talks on the same day at 830 AM! In any case, we met some good folks at JAX this year, and there was even an opportunity to lightly embarrass myself with an impromptu interview onsite – hopefully I was coherent enough to be understandable :-)

The first thing you notice about Alex Laats is how he looks like he could take on Chuck Norris. But go past the tough facade, fashioned over the last 8 years building up and selling IT firms that have specialities in military technology, and you will find a calm, down-to-earth guy.

From April 15th, ZeroTurnaround’s Boston offices (our HQ is *still* in Tartu, Estonia) is where you will find Alex much of the time during the day, taking the position of ZeroTurnaround’s President and Chief Operating Officer.

With Estonian roots and a history of turning small, niche IT startups into powerhouse suppliers later bought out by major firms like Raytheon (Laats was Division President at BBN Technologies since 2004, which Raytheon bought for $350 million USD in 2009), Alex is looking to hit the ground running at ZeroTurnaround.

“[ZeroTurnaround's] products are delivering real value for customers and the product vision is fantastic,” said Alex in an interview with the Boston Business Journal.

As COO and President, Alex will be challenging himself with the responsibilities of ZeroTurnaround’s day-to-day operations, finances, HR, analytics and go-to-market strategies.

“Alex has a great deal of experience taking products to market, forging strategic alliances and building an analytics machine across sales, marketing, finance and operations. I believe that his skills and experience will complement mine greatly, allowing me to focus more on our roadmap, products, customers and outreach. It is our hope to forge a partnership that will help this company grow while preserving our mission,” commented ZeroTurnaround’s CEO, Jevgeni Kabanov.

Welcome to the team, Alex – and may the force be with you…

Older Entries »

Join the Rebellion Facebook Twitter RSS feed