XPages Jakarta EE Support

This project adds partial support for several Java/Jakarta EE technologies to XPages applications. Of the list of technologies included in the full Jakarta EE spec, this project currently provides:

It also provides components from MicroProfile:

CDI

The Jakarta Contexts and Dependency Injection 3.0 specification provides for managed beans and dependency injection. To use this feature, add the “org.openntf.xsp.cdi” library to your XPages app.

Currently, this support is focused around adding annotated CDI managed bean classes in an NSF and having them picked up by the variable resolver. For example:

@ApplicationScoped
@Named("applicationGuy")
public class ApplicationGuy {
  public String getFoo() {
    return "hello";
  }
}
```xml
<xp:text value="#{applicationGuy.foo}"/>

These beans are managed and instantiated by Weld and support injection with other annotated beans:

@RequestScoped
@Named("requestGuy")
public class RequestGuy {
    @Inject private ApplicationGuy applicationGuy;
   // Or with a name:
    @Inject @Named("applicationGuy") private ApplicationGuy applicationGuy;

   // ...
}

Additionally, the CDI system can inject implementations of interfaces based on available concrete implementations, as well as use @PostConstruct and @PreDestroy annotations:

public class RequestGuy extends AbstractBean {
    static interface AppModel {

    }
    static class SomeModelClass implements AppModel {

    }
    @Inject AppModel model;// Will be a new instance of SomeModelClass each request

    @PostConstruct
    public void postConstruct() { System.out.println("Created with " + model); }
    @PreDestroy
    public void preDestroy() { System.out.println("Destroying!"); }
}

The contextual Domino objects - the Database and Sessions - are available to use with @Inject. In the case of Database, this can be used without any modifiers. In the case of the Sessions, they are available with @Named qualifiers:

    @Inject
    Database database;

    @Inject
    @Named("dominoSession")
    Session session;

    @Inject
    @Named("dominoSessionAsSigner")
    Session sessionAsSigner;

    @Inject
    @Named("dominoSessionAsSignerWithFullAccess")
    Session sessionAsSignerWithFullAccess;

Conversation Scope

This implementation maps CDI @ConversationScoped beans to the XPages view scope. This isn't necessarily a direct analogue, but it's close enough.

Limitations

Currently, the CDI environment for the application acts as if there is a META-INF/beans.xml file with bean-discovery-mode="all" set, but only resolves within the active NSF. So, while NSF beans and classes can reference each other, plugin and system classes are not available for CDI injection.

Expression Language

The Expression Language 4.0 spec is the evolved version of the original Expression Language as used in XPages. It contains numerous improvements over its predecessors, such as method parameters and lambda expressions. To use this feature, add the “org.openntf.xsp.el” library to your XPages app.

When the library is enabled, the EL 4 processor takes over for all normal expression language bindings and so can be used without a prefix in some cases:

<xp:text value="${someBean.calculateFoo('some arg')}"/>

Note that Designer attempts to validate the syntax of runtime EL bindings; to work around this, add an “el:” prefix to the binding. This will leave a warning in Designer, but it will work:

<xp:text value="#{el:someBean.hello()}"/>

Overriding the Prefix

If you don't want EL 4 to take over the default handling of EL in the app, you can specify a different prefix using the org.openntf.xsp.el.prefix in your app's Xsp Properties file. For example:

xsp.library.depends=org.openntf.xsp.el
org.openntf.xsp.el.prefix=ex

Note that Designer refuses to compile XPages with runtime-bound expressions that use a number in the prefix, so this should be letters only.

Regardless of whether or not you specify an alternate prefix, the original XPages EL parser will be available by using expressions like #{xspel:someBean}.

Implementation Details

The EL 4 handler is currently stricter about null values than the default handler in XPages. For example, take this binding:

<xp:text value="${beanThatDoesNotExist.someProp}"/>

In standard XPages, this will result in an empty output. With the EL 4 resolver, however, this will cause an exception like ELResolver cannot handle a null base Object with identifier 'beanThatDoesNotExist'. I'm considering changing this behavior to match the XPages default, but there's also some value in the strictness, especially because the exception is helpful in referencing the object it's trying to resolve against, which could help track down subtle bugs.

Additionally, if you use Server JavaScript bindings inside a theme (e.g. rendered="${javascript:...}"), the resolver will complain on the server console if there is whitespace immediately following javascript:.

Servlets

This project adds support for specifying Servlets in an NSF using the @WebServlet annotation. For example:

package servlet;

import java.io.IOException;

import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;

@WebServlet(urlPatterns = { "/someservlet", "/someservlet/*", "*.hello" })
public class ExampleServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;

    @Override
    protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
        resp.setContentType("text/plain");
        resp.getWriter().println("Hello from ExampleServlet. context=" + req.getContextPath() + ", path=" + req.getServletPath() + ", pathInfo=" + req.getPathInfo());
        resp.getWriter().flush();
    }
}

These Servlets will be available under /xsp in the NSF with matching patterns. For example, the above Servlet will match /foo.nsf/xsp/someservlet, /foo.nsf/xsp/someservlet/bar, and /foo.nsf/xsp/testme.hello.

These Servlets participate in the XPages lifecycle and have programmatic access to CDI beans via CDI.current().

Note, however, that other Servlet artifacts such as @WebFilter and @WebListener are not yet supported.

RESTful Web Services

The RESTful Web Services specification is the standard way to provide web services in Java EE applications. A version of it has been included for a long time in Domino by way of the Extension Library. However, this version is also out of date, with Apache Wink implementing JAX-RS 1.1.1.

This library is based on the work of Martin Pradny and provides JAX-RS support by way of RESTEasy for classes inside the NSF. When a class is or has a method annotated with @Path, it is included as a service beneath /xsp/app inside the NSF. For example:

package servlet;

import jakarta.inject.Inject;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.core.MediaType;
import jakarta.ws.rs.core.Response;

import beans.ApplicationGuy;

@Path("/sample")
public class Sample {
  @Inject private ApplicationGuy applicationGuy;

    @GET
    public Response hello() {
        try {
            return Response.ok()
                .type(MediaType.TEXT_PLAIN)
                .entity(applicationGuy.toString())
                .build();
        } catch(Throwable t) {
            return Response.serverError().build();
        }
    }
}

As intimated there, it has access to the CDI environment if enabled, though it doesn't yet have proper lifecycle support for ConversationScoped beans.

The path within the NSF can be modified by setting the org.openntf.xsp.jaxrs.path property in the NSF's “xsp.properties” file. The value there will be appended to /xsp. For example, setting it to foo will make the above example available at /some.nsf/xsp/foo/sample.

When converting objects to JSON, this will use JSON-B to stream the response to the client. This streaming can be disabled in favor of pre-buffering for troubleshooting purposes by setting this in xsp.properties:

rest.jsonb.stream=false

Security

REST resources can be individually secured with the @RolesAllowed annotation. Values in this annotation are matched against the user's effective names list: their username, various permutations, their groups, and their DB-specific roles. For example:

@GET
@RolesAllowed({ "*/O=SomeOrg", "LocalDomainAdmins", "[Admin]" })
public Object get() {
   // ...
}

Additionally, the special pseudo-name “login” can be used to require that the user be logged in at all, but not restrict to specific users beyond that.

OpenAPI

Using MicroProfile OpenAPI, these REST services are also made available via /xsp/app/openapi within the NSF. This resource includes information about each available REST endpoint in the NSF and will produce YAML by default and JSON upon request via an Accept header. Additionally, /xsp/app/openapi.yaml and /xsp/app/openapi.json are available to produce YAML and JSON explicitly without consulting the Accept header.

Moreover, resources can be annotated with the MicroProfile OpenAPI annotations. For example:

@GET
@Operation(
    summary = "Example service",
    description = "Returns an object that says 'hello' to you"
)
public Response hello() {
   // ...
}

This feature requires that MicroProfile Config is also enabled.

Metrics

Using MicroProfile Metrics, it is possible to track invocations and timing from REST services. For example:

@GET
@Timed
public Response hello() {
   /* Perform the work */
}

When such a service is executed, its performance is logged and becomes available via /xsp/app/metrics within the NSF:

# TYPE application_rest_Sample_hello_total counter
application_rest_Sample_hello_total 2.0
# TYPE application_rest_Sample_hello_elapsedTime_seconds gauge
application_rest_Sample_hello_elapsedTime_seconds 8.252E-4

This capability can be disabled by setting rest.mpmetrics.enable=false in your Xsp Properties. Note that Fault Tolerance has an implicit dependency on this, and so will also be unavailable if you set this flag.

Note: the semantics and output of this component are likely to change in the future. MicroProfile Metrics 5.0 and above move to being based on Micrometer. As part of MicroProfile 6.0, however, this version requires Java 11 and will only be adopted here when Domino supports at least that Java version.

CORS

CORS can be enabled and customized for REST services by enabling the MicroProfile Config feature (described below) and setting some or all of the following properties in the app's Xsp Properties:

rest.cors.enable=true                   # required for CORS
rest.cors.allowCredentials=true         # defaults to true
rest.cors.allowedMethods=GET,HEAD       # defaults to all
rest.cors.allowedHeaders=Some-Header    # defaults to all
rest.cors.exposedHeaders=Some-Header    # optional
rest.cors.maxAge=600                    # optional
# allowedOrigins is required, and can be "*"
rest.cors.allowedOrigins=http://foo.com,http://bar.com

Bean Validation

The Bean Validation spec provides a standard mechanism for performing validation of arbitrary objects via annotations. XPages doesn't provide any type of bean validation mechanism - the closest things it provides are UI component validators, but those don't connect to the back-end objects at all.

This library provides validation annotations and a processor via Hibernate Validator. Since there is no existing structure to hook into in the XPages runtime, bean validation must be called explicitly by your code, such as in a common “save” method in model objects. This is done by constructing a Validator object using the builder and then running it against a given bean. Due to the intricacies of the XPages runtime, code performing validation should be run from an OSGi plugin.

For generic use, this library provides an org.openntf.xsp.beanvalidation.XPagesValidationUtil class with methods to construct a Validator object and to use that validator to validate a bean:

import org.openntf.xsp.beanvalidation.XPagesValidationUtil;
import jakarta.validation.Validator;
import jakarta.validation.ConstraintViolation;
import jakarta.validation.constraints.NotEmpty;

public class Tester {
  public static class ExampleBean {
    private @NotEmpty String id;
    public ExampleBean(String id) {
      this.id = id;
    }
  }

  public void test() {
    ExampleBean bean = new ExampleBean("");
    Validator validator = XPagesValidationUtil.constructXPagesValidator();
    Set<ConstraintViolation<ExampleBean>> violations = XPagesValidationUtil.validate(bean, validator);
    if(!violations.isEmpty()) {
     // Handle error message here
    }
  }
}

Implementation Details

Using Bean Validation 3.0 requires also having Expression Language 4.0 installed, even if it is not active for the current application.

JSON-P and JSON-B

The Java API for JSON Processing spec is the standardized JSON library for Jakarta EE. The lack of a standard API led to the proliferation of similar-but-incompatible libraries like the initial json.org implementation, Google Gson, and (mostly for XPages developers) the IBM Commons JSON implementation. JSON-P is intended to be a simple and functional unified implementation.

The Java API for JSON Binding spec is a standardization of JSON serialization of Java objects, something that libraries like Gson specialize in. It allows for converting objects to and from a JSON representation, either with its default guesses or by customizing the processor or annotating the Java class. This support is provided via Eclipse Yasson.

The “org.openntf.xsp.jsonapi” library provides both of these libraries to XPages, though they don't replace any standard behavior in the environment. To avoid permissions problems, it contains an org.openntf.xsp.jsonapi.JSONBindUtil class to serialize and deserialize objects in AccessController blocks:

import jakarta.enterprise.inject.spi.CDI;
import jakarta.json.bind.Jsonb;
import jakarta.json.bind.JsonbBuilder;

import org.openntf.xsp.jsonapi.JSONBindUtil;

public class JsonTest {
    public static class TestBean {
        private String firstName;
        private String lastName;

        public TestBean() { }
        public String getFirstName() { return firstName; }
        public void setFirstName(String firstName) { this.firstName = firstName; }
        public String getLastName() { return lastName; }
        public void setLastName(String lastName) { this.lastName = lastName; }
    }

    public String getJson() {
        TestBean foo = new TestBean();
        foo.setFirstName("foo");
        foo.setLastName("fooson");
        Jsonb jsonb = JsonbBuilder.create();

       // {"firstName":"foo","lastName":"fooson"}
        return JSONBindUtil.toJson(foo, jsonb);
    }

    public Object getObject() {
       // Also injectable via CDI
        Jsonb jsonb = CDI.current().select(Jsonb.class).get();
        String json = getJson();
        return JSONBindUtil.fromJson(json, jsonb, TestBean.class);
    }
}

By default, JSON-B will export object properties based on publicly-visible getters (e.g. getFoo()) and will ignore non-public fields (e.g. private String foo). This behavior can be customized with a PropertyVisibilityStrategy object, which in turn can be passed to a JsonbConfig class. This configuration can be supplied via CDI, in which case it will take effect for CDI-injected Jsonb instances as well as in REST requests. See the nsf-jakartaee-jsonbconfig-example NSF for an example of this configuration.

XML Binding

The XML Binding 3.0 spec provides for translating objects to and from XML, similar to JSON-B for JSON. In addition to default translations for un-configured objects, this allows for annotating classes with information to specify their translation.

For example:

@XmlRootElement(name="application-guy")
public class ApplicationGuy {
    @XmlElement(name="time")
    private final long time = System.currentTimeMillis();

   /* snip */
}

The JaxbUtil class provides a convenience method for creating a JAXBContext object to manually marshal (serialize) and unmarshal (deserialize) objects to and from XML. Additionally, objects returned in JAX-RS methods marked as emitting XML will use this implicitly:

@GET
@Path("/xml")
@Produces(MediaType.APPLICATION_XML)
public Object xml() {
   // <application-guy>
   //   <time>1674221690372</time>
   // </application-guy>
    return applicationGuy;
}

Mail

The Mail 2.1 API provides classes for working with MIME and other email technologies. Though this does not integrate with Domino's mail capabilities, it can be useful for generating and processing MIME messages generally. For example:

@GET
public Object getMultipart() throws MessagingException {
    MimeMultipart result = new MimeMultipart();
    MimeBodyPart part = new MimeBodyPart();
    part.setContent("i am content", "text/plain");
    result.addBodyPart(part);
    result.setPreamble("I am preamble");
    return result;
}

This will emit content like:

I am preamble
------=_Part_0_9550202.1674222767917

i am content
------=_Part_0_9550202.1674222767917--

Server Pages and JSTL

Jakarta Server Pages is the current form of the venerable JSP and provides the ability to write single-execution pages in the NSF with a shared CDI space. The Jakarta Standard Tag Library is the standard set of tags and functions available for looping, formatting, escaping, and other common operations.

When this library is enabled, .jsp files in the “Files” or “WebContent” parts of the NSF will be interpreted as live pages. For example:

<%@page contentType="text/html" pageEncoding="UTF-8" trimDirectiveWhitespaces="true" %>
<%@taglib prefix="t" tagdir="/WEB-INF/tags" %>
<%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
<!DOCTYPE html>
<html>
    <head>
        <title>JSP Inside An NSF</title>
    </head>
    <body>
        <p>My CDI Bean is: ${applicationGuy}</p>
        <p>My requestScope is: ${requestScope}</p>
        <p>JSTL XML-escaped content is: ${fn:escapeXml('<hello>')}</p>

        <t:example value="Value sent into the tag"/>
    </body>
</html>

As demonstrated above, this will resolve in-NSF tags via the NSF's classpath and will allow the use of CDI beans.

Concurrency

The Concurrency API provides a mechanism for locating and using managed variants of ExecutorService and ScheduledExecutorService to use contextual application services from within a multithreaded context. These objects can be retrieved using JNDI:

ManagedExecutorService exec = InitialContext.doLookup("java:comp/DefaultManagedExecutorService");
ManagedScheduledExecutorService scheduler = InitialContext.doLookup("java:comp/DefaultManagedScheduledExecutorService");

…or using CDI:

@Inject @Named("java:comp/DefaultManagedExecutorService")
private ManagedExecutorService exec;

@Inject @Named("java:comp/DefaultManagedScheduledExecutorService")
private ManagedScheduledExecutorService scheduler;

Tasks run from these executors will retain their NSF and requesting user context as well as the application's CDI container.

The mechanics of the pool can be configured with several xsp.properties values, with these defaults:

concurrency.hungTaskThreshold=0
concurrency.longRunningTasks=true
concurrency.corePoolSize=5
concurrency.maxPoolSize=10
concurrency.keepAliveSeconds=1800
concurrency.threadLifetimeSeconds=1800
concurrency.queueCapacity=0

These values apply to both the normal and scheduled services.

Transactions

The Transactions API provides a generic way to handle resource transactions. The implementation in this project is a partial one that aims to allow for transactions in the Domino NoSQL driver implementation (see below). For example:

@GET
@Produces(MediaType.APPLICATION_JSON)
@Transactional
public Map<String, Object> createExampleDocAndPersonThenFail() {
    Person person = new Person();
    person.setFirstName("At " + System.nanoTime());
    person.setLastName("Created for exampleDocAndPersonTransactionThenFail");
    person = personRepository.save(person);

    ExampleDoc exampleDoc = new ExampleDoc();
    exampleDoc.setTitle("I am created for exampleDocAndPersonTransactionThenFail at " + System.nanoTime());
    exampleDoc = repository.save(exampleDoc);

    throw new RuntimeException("I am intentionally failing to trigger a rollback");
}

In this case, neither document will actually be saved to their databases.

This implementation does not currently support JNDI referencing or transaction suspension. Though transactions are propagated across Concurrency boundaries, note that Domino transactions are thread-specific and thus should be started and committed within a single thread.

Server Faces

Jakarta Server Faces is the JEE 9 form of JSF, the spec XPages forked off from.

JSF is implemented here by way of Apache MyFaces.

A Faces page, like an XPage, is an XML document that is parsed and converted into components for rendering. When this library is enabled, .jsf and .xhtml files in the “Files” or “WebContent” parts of the NSF will be interpreted as live pages. For example:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<f:view xmlns="http://www.w3.org/1999/xhtml"
      xmlns:f="http://xmlns.jcp.org/jsf/core"
      xmlns:h="http://xmlns.jcp.org/jsf/html">

    <h:head>
        <title>JSF 3.0 Hello World</title>
    </h:head>
    <h:body>
        <h2>JSF 3.0 Hello World Example - hello.xhtml</h2>

        <dl>
            <dt>facesContext</dt>
            <dd><h:outputText value="#{facesContext}"/></dd>

            <dt>requestGuy.message</dt>
            <dd><h:outputText value="#{requestGuy.message}"/></dd>

            <dt>Project Stage</dt>
            <dd><h:outputText value="#{facesContext.application.projectStage}"/></dd>
        </dl>

        <fieldset>
            <legend>Example Form</legend>
            <h:form>
                <h:inputText id="appGuyProperty" value="#{applicationGuy.beanProperty}"/>
                <h:commandButton value="Refresh">
                    <f:ajax execute="appGuyProperty" render="formOutput"/>
                </h:commandButton>

                <p><h:outputText id="formOutput" value="#{applicationGuy.beanProperty}"/></p>
            </h:form>
        </fieldset>
    </h:body>
</f:view>

Development Mode

The “Project Stage” value can be set in the Xsp Properties file to one of the values from jakarta.faces.application.ProjectStage. For example:

jakarta.faces.PROJECT_STAGE=Development

This is useful to alter internal behaviors and optimizations. For example, setting Development there will cause the runtime to less-heavily cache page definitions.

ClassLoaders

Because Faces classes and lifecycle registrations will often conflict with XPages elements, it's not possible to add extensions like PrimeFaces as a normal JAR within the application. To work around this, you can put JARs in WebContent/WEB-INF/jakarta/lib - these will be loaded in the Faces class loader, but won't be present in the normal Java classpath of the NSF. Faces UI libraries placed here can be used inside XHTML files, though

Additionally, if you want to use XPages and Faces extension components in faces-config.xml within the same app, you can create a second file, WebContent/WEB-INF/jakarta/faces-config.xml, to house the Faces components. When present, it will be used in preference to the normal file for Faces requests.

MVC

The Jakarta MVC specification allows for action-based MVC using JAX-RS as the controller layer and (by default) JSP as the view layer. With this, you can annotate a JAX-RS resource or method with @Controller, perform setup actions, and then return the name of a page to render. For example:

package servlet;

import jakarta.enterprise.context.RequestScoped;
import jakarta.inject.Inject;
import jakarta.mvc.Controller;
import jakarta.mvc.Models;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.QueryParam;
import jakarta.ws.rs.core.MediaType;

@Path("mvc")
@Controller
@RequestScoped
public class MvcExample {

    @Inject
    Models models;

    @GET
    @Produces(MediaType.TEXT_HTML)
    public String get(@QueryParam("foo") String foo) {
        models.put("incomingFoo", foo);
        return "mvc.jsp";
    }
}

This will load the JSP file stored as WebContent/WEB-INF/views/mvc.jsp in the NSF and evaluate it with the values from “models” and CDI beans available for use.

NoSQL

The Jakarta NoSQL API provides for semi-database-neutral object mapping for NoSQL databases in a manner similar to JPA for relational databases. Entities are defined with annotations again similar to JPA:

package model;

import jakarta.nosql.mapping.Column;
import jakarta.nosql.mapping.Entity;
import jakarta.nosql.mapping.Id;

@Entity
public class Person {
    @Id
    private String unid;

    @Column("FirstName")
    private String firstName;

    @Column("LastName")
    private String lastName;

    public String getUnid() { return unid; }
    public void setUnid(String unid) { this.unid = unid; }

    public String getFirstName() { return firstName; }
    public void setFirstName(String firstName) { this.firstName = firstName;    }

    public String getLastName() { return lastName; }
    public void setLastName(String lastName) { this.lastName = lastName; }
}

This API builds on CDI to dynamically generate repositories based on method names and parameters. In basic cases, this can be done with no annotations or custom code at all:

package model;

import java.util.stream.Stream;

import jakarta.nosql.mapping.Repository;

public interface PersonRepository extends Repository<Person, String> {
    Stream<Person> findAll();
    Stream<Person> findByLastName(String lastName);
}

These repositories can then be used via CDI injection, such as in a REST endpoint:

// snip

@Path("nosql")
public class NoSQLExample {
    @Inject
    PersonRepository personRepository;

    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public Object get(@QueryParam("lastName") String lastName) {
        Map<String, Object> result = new LinkedHashMap<>();
        result.put("byQueryLastName", personRepository.findByLastName(lastName).collect(Collectors.toList()));
        result.put("totalCount", personRepository.count());
        return result;
    }
}

Note: the semantics of this component are likely to change in the future. In beta versions after this one, the NoSQL spec reduced its purview in favor of working with the Jakarta Data API. The latter will expose Repository types like above, and this will be a breaking change. However, this version requires at least Java 11 and will only be adopted here when Domino supports at least that Java version.

Accessing Views

View and folder data can be accessed by writing repository methods annotated with the org.openntf.xsp.nosql.mapping.extension.ViewEntries and org.openntf.xsp.nosql.mapping.extension.ViewDocuments annotations. For example:

public interface PersonRepository extends DominoRepository<Person, String> {
    @ViewDocuments(FOLDER_PERSONS)
    Stream<Person> findInPersonsFolder();

    @ViewEntries(VIEW_PERSONS)
    Optional<Person> findByKey(ViewQuery viewQuery);
}

The @ViewDocuments annotation will retrieve all the documents contained in the view or folder, in entry order, while @ViewEntries will read only the entry data. The latter is potentially much faster, but does not provide full access to the underlying documents. Rich-text items are not available, for example, though view columns are accessible by programmatic name (e.g. $3). The org.openntf.xsp.nosql.mapping.extension.ViewQuery type can be used programmatically to define a query on the view data. For example, in a REST service finding a person entry by the last-name key from the view:

@Path("byViewKey/{lastName}")
@GET
@Produces(MediaType.APPLICATION_JSON)
public Person getPersonByViewKey(@PathParam("lastName") String lastName) {
    ViewQuery query = ViewQuery.query().key(lastName, true);// "true" for an exact match
    return personRepository.findByKey(query)
        .orElseThrow(() -> new NotFoundException("Unable to find Person for last name: " + lastName));
}

Named and Profile Documents

Named and profile documents can be retrieved with the findNamedDocument and findProfileDocument methods on DominoRepository instances. While documents can be readily accessed this way, it is also important to include specific special fields in your model in order to create and update them. For example, for named documents:

@Entity
public class SomeNamedDoc {
    @Id
    private String documentId;

    @Column(DominoConstants.FIELD_NOTENAME)
    private String noteName;

   // If using key parameters:
    @Column(DominoConstants.FIELD_USERNAME)
    private String noteUserName;

   /* ... */
}

And for profile documents:

@Entity
public class SomeProfileDoc {
    @Id
    private String documentId;

    @Column(DominoConstants.FIELD_PROFILENAME)
    private String profileName;

   // If using key parameters:
    @Column(DominoConstants.FIELD_PROFILEKEY)
    private String profileKey;

   /* ... */
}

Document Sources

By default, the driver assumes that documents are stored in the current database. This can be overridden by using the org.openntf.xsp.nosql.mapping.extension.RepositoryProvider annotation. For example:

package model;

import java.util.stream.Stream;

import org.openntf.xsp.nosql.mapping.extension.DominoRepository;
import org.openntf.xsp.nosql.mapping.extension.RepositoryProvider;

@RepositoryProvider("names")
public interface PersonRepository extends DominoRepository<Person, String> {
    Stream<Person> findAll();
    Stream<Person> findByLastName(String lastName);
}

Then, create a CDI bean that can provide the desired database and a sessionAsSigner object (which is used for QueryResultsProcessor views), annotated with jakarta.nosql.mapping.Database. For example:

package bean;

import org.openntf.xsp.nosql.communication.driver.DominoDocumentCollectionManager;
import org.openntf.xsp.nosql.communication.driver.lsxbe.impl.DefaultDominoDocumentCollectionManager;

import com.ibm.domino.xsp.module.nsf.NotesContext;

import jakarta.enterprise.context.RequestScoped;
import jakarta.enterprise.inject.Produces;
import jakarta.nosql.mapping.Database;
import jakarta.nosql.mapping.DatabaseType;
import lotus.domino.NotesException;

@RequestScoped
public class NamesRepositoryBean {
    @Produces
    @Database(value = DatabaseType.DOCUMENT, provider = "names")
    public DominoDocumentCollectionManager getNamesManager() {
        return new DefaultDominoDocumentCollectionManager(
            () -> {
                try {
                    return NotesContext.getCurrent().getSessionAsSigner().getDatabase("", "names.nsf");
                } catch (NotesException e) {
                    throw new RuntimeException(e);
                }
            },
            () -> NotesContext.getCurrent().getSessionAsSigner()
        );
    }
}

Persistence (JPA)

The Persistence API (JPA) provides access and mapping to relational databases in a managed way. This feature builds on the existing RDBMS support in XPages, using the same underlying configuration for the connection pools.

Declaration of a Persistence class is done similarly to NoSQL:

package model;

import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.GeneratedValue;
import jakarta.persistence.GenerationType;
import jakarta.persistence.Id;
import jakarta.persistence.Table;

@Entity
@Table(name="companies", schema="public")
public class Company {
    @Id
    @GeneratedValue(strategy=GenerationType.IDENTITY)
    private Long id;

    @Column(name="name", length=255)
    private String name;

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
}

Once you've configured the JDBC connection for XPages, you can then map your class to the connection in a file named META-INF/persistence.xml in your NSF's classpath (e.g. added in Code/Java):

<?xml version="1.0" encoding="UTF-8"?>
<persistence version="3.0" xmlns="https://jakarta.ee/xml/ns/persistence"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="https://jakarta.ee/xml/ns/persistence https://jakarta.ee/xml/ns/persistence/persistence_3_0.xsd">
    <persistence-unit name="JPATestProj" transaction-type="JTA">
        <class>model.Company</class>
        <jta-data-source>java:comp/env/jdbc/yourconnectionname</jta-data-source>
        <properties>
            <property name="jakarta.persistence.jdbc.url" value="java:comp/env/jdbc/yourconnectionname"/>
        </properties>
    </persistence-unit>
</persistence>

This will map a JDBC configuration defined in WebContent/WEB-INF/jdbc/yourconnectionname.jdbc to the model.Company class.

This feature does not currently provide container-managed EntityManagers, but they can be built up and used explicitly. For example:

package rest;

import java.util.List;

import jakarta.persistence.EntityManager;
import jakarta.persistence.EntityManagerFactory;
import jakarta.persistence.Persistence;
import jakarta.persistence.TypedQuery;
import jakarta.persistence.criteria.CriteriaBuilder;
import jakarta.persistence.criteria.CriteriaQuery;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;
import model.Company;

@Path("companies")
public class CompaniesResource {
    @GET
    @Produces(MediaType.APPLICATION_JSON)
    public List<Company> get() {
        EntityManagerFactory emf = Persistence.createEntityManagerFactory("JPATestProj");
        EntityManager em = emf.createEntityManager();
        try {
            CriteriaBuilder cb = em.getCriteriaBuilder();
            CriteriaQuery<Company> query = cb.createQuery(Company.class);
            TypedQuery<Company> tq = em.createQuery(query);
            return tq.getResultList();
        } finally {
            em.close();
        }
    }
}

MicroProfile Config

The MicroProfile Config API allows injection of configuration parameters from externalized sources, separating configuration from code. These parameters can then be injected using CDI. For example:

@ApplicationScoped
public class ConfigExample {
    @Inject
    @ConfigProperty(name="java.version")
    private String javaVersion;

    @Inject
    @ConfigProperty(name="xsp.library.depends")
    private String xspDepends;

   /* use the above */
}

Four providers are currently configured:

  • A system-properties source, such as “java.version”
  • A source from META-INF/microprofile-config.properties within the NSF
  • A source from xsp.properties in the NSF, such as “xsp.library.depends” or custom values
  • A source from Domino environment variables, such as “Directory”

MicroProfile Rest Client

The MicroProfile Rest Client API allows for creation of type-safe clients for remote REST services using Jakarta REST annotations. For example:

@ApplicationEScoped
public class RestClientExample {
    public static class JsonExampleObject {
        private String foo;

        public String getFoo() {
            return foo;
        }
        public void setFoo(String foo) {
            this.foo = foo;
        }
    }

    public interface JsonExampleService {
        @GET
        @Produces(MediaType.APPLICATION_JSON)
        JsonExampleObject get();
    }

    public Object get() {
        URI serviceUri = URI.create("some remote service");
        JsonExampleService service = RestClientBuilder.newBuilder()
            .baseUri(serviceUri)
            .build(JsonExampleService.class);
        JsonExampleObject responseObj = service.get();
        Map<String, Object> result = new LinkedHashMap<>();
        result.put("called", serviceUri);
        result.put("response", responseObj);
        return result;
    }
}

MicroProfile Fault Tolerance

The MicroProfile Fault Tolerance API allows CDI beans to be decorated with rules for handling exceptions, timeouts, and concurrency restrictions. For example:

@ApplicationScoped
public class FaultToleranceBean {
    @Retry(maxRetries = 2)
    @Fallback(fallbackMethod = "getFailingFallback")
    public String getFailing() {
        throw new RuntimeException("this is expected to fail");
    }

    @SuppressWarnings("unused")
    private String getFailingFallback() {
        return "I am the fallback response.";
    }

    @Timeout(value=5, unit=ChronoUnit.MILLIS)
    public String getTimeout() throws InterruptedException {
        TimeUnit.MILLISECONDS.sleep(10);
        return "I should have stopped.";
    }

    @CircuitBreaker(delay=60000, requestVolumeThreshold=2)
    public String getCircuitBreaker() {
        throw new RuntimeException("I am a circuit-breaking failure - I should stop after two attempts");
    }
}

This feature requires that MicroProfile Config is also enabled.

MicroProfile Health

The MicroProfile Health API allows you to create CDI beans that provide health checks and statistics for your application, queryable at standard endpoints. For example:

package health;

import org.eclipse.microprofile.health.HealthCheck;
import org.eclipse.microprofile.health.HealthCheckResponse;
import org.eclipse.microprofile.health.HealthCheckResponseBuilder;
import org.eclipse.microprofile.health.Liveness;

import com.ibm.domino.xsp.module.nsf.NotesContext;

import jakarta.enterprise.context.ApplicationScoped;
import lotus.domino.Database;
import lotus.domino.NoteCollection;
import lotus.domino.NotesException;

@ApplicationScoped
@Liveness
public class PassingHealthCheck implements HealthCheck {
    @Override
    public HealthCheckResponse call() {
        HealthCheckResponseBuilder response = HealthCheckResponse.named("I am the liveliness check");
        try {
            Database database = NotesContext.getCurrent().getCurrentDatabase();
            NoteCollection notes = database.createNoteCollection(true);
            notes.buildCollection();
            return response
                .status(true)
                .withData("noteCount", notes.getCount())
                .build();
        } catch(NotesException e) {
            return response
                .status(false)
                .withData("exception", e.text)
                .build();
        }
    }
}

In addition to @Liveness, Health also allows checks to be categorized as @Readiness and @Startup.

The results of these checks will be available at /xsp/app/health (aggregating all types), /xsp/app/health/ready, /xsp/app/health/live, and /xsp/app/health/started. These endpoints will emit JSON describing the applicable health checks and an overall “UP” or “DOWN” status. For example:

{
    "status": "DOWN",
    "checks": [
        {
            "name": "I am the liveliness check",
            "status": "UP",
            "data": {
                "noteCount": 63
            }
        },
        {
            "name": "I am a failing readiness check",
            "status": "DOWN"
        },
        {
            "name": "started up fine",
            "status": "UP"
        }
    ]
}

Requirements

  • Domino 9.0.1FP10+
    • NoSQL requires Domino 12.0.1+
  • Designer 9.0.1FP10+ (for compiling the NSF)
  • Some of the APIs require setting the project Java compiler level to 1.8

NoSQL and the MicroProfile Rest Client require loosening Domino's java.policy settings to include:

grant {
    permission java.security.AllPermission;
};

If this is unset, problems with NoSQL will manifest with root exceptions like jakarta.nosql.ProviderNotFoundException: Provider not found: interface jakarta.nosql.document.DocumentQueryParser.

Building

Building requires that Maven run with Java 11 or above.

To build this application, first package the osgi-deps Maven project, which will provide the target platform dependencies used by the eclipse Maven tree.

Additionally, set the notes-platform Maven property to a URI referencing an update site generated by the generate-domino-update-site Maven plugin. Note: this site must be generated by version 4.2.1 or newer of that plugin and must have been generated from either a Domino server or a Windows Notes client, as it requires the “xsp.http.bootstrap.jar” file present only in those installations.

Known Issues

If your Domino Java classpath has any invalid entries in it, the CDI portion of the tooling will complain and fail to load, which may cause XPages apps generally to throw an error 500.

The workaround for this is to check your classpath (jvm/lib/ext and ndext, primarily) for any files that the Domino process user can't access (usually the local system on Windows, or notes on Linux). Additionally, look for a JavaUserClassesExt entry in the server's notes.ini and make sure that all of the files or directories it references exist and are readable.

See COMPATIBILITY.md for details on known incompatibilities with specific projects.

License

The code in the project is licensed under the Apache License 2.0. The dependencies in the binary distribution are licensed under compatible licenses - see NOTICE for details.