I have created an UIComponent to embed Vaadin applications into XPages. It allows to run both technologies on the same site by adding it to your XPage:
<?xml version="1.0" encoding="UTF-8"?>
<xp:view
xmlns:xp="http://www.ibm.com/xsp/core"
xmlns:vaadin="http://vaadin.com/xsp/control"
createForm="false">
<!-- XPages Application -->
<xp:form>
<xp:div id="refreshMe">
<h1>XPage</h1>
<xp:label
value="#{javascript:java.lang.System.nanoTime()}"
id="label1">
</xp:label>
</xp:div>
<xp:button
value="refresh"
id="button1">
<xp:eventHandler
event="onclick"
submit="true"
refreshMode="partial"
refreshId="refreshMe">
</xp:eventHandler>
</xp:button>
</xp:form>
<!-- VAADIN Application -->
<vaadin:Vaadin
id="Vaadin1"
url = "/vaadin/"
divId="addressbook"
version="7.3.8"
forceResize="true" />
</xp:view>
This little example shows the XPage above including the the Adressbook application:

The Vaadin application is reachable at „http://localhost/vaadin/“ (hosted by Domino), that’s why the property url is set to „/vaadin/„. The property divId contains the name of the application which is used as id in the DOM tree.
It is required that the VaadinComponent is not inside a xp:form element. If it detects a surrounding form, a runtime exception is thrown. That’s why you have to set createForm to false and add your own xp:form to your application, as shown in the example.

If the parameter forceResize is set to true, a CSS style sheet is added to the XPage which resizes the height of html and the body node to 100%. Otherwise the Vaadin application will not be displayed correctly.

Resource Aggregation must be disabled, otherwise it won’t work.
The sources can be found at https://github.com/hasselbach/VaadinInXPages