executeOnceSuffix

Talks about: <a class="post-tag post-tag-frontmatter" href="/tags/frontmatter">frontmatter</a>, and <a class="post-tag post-tag-sql" href="/tags/sql">sql</a>

The method suffix to use for generated methods that execute once.

Configuration Options

Option: ''

The default value for executeOnceSuffix is the empty string. It does not add any suffix after methods that execute once.

package com.example.persistence;

public class SomeRepository {

    public void writeSome() {
        // ... some code
    }

    // ... rest of generated code

}

Option: ‘mySuffix’

In case you want to suffix methods that execute once with something, set the executeOnceSuffix option.

package com.example.persistence;

public class SomeRepository {

    public void writeSomeMySuffix() {
        // ... some code
    }

    // ... rest of generated code

}

Front Matter

In order to configure this option, place the following code in the front matter of your SQL statement:

-- executeOnceSuffix: configValue
SELECT  something
FROM    your_database_schema
WHERE   some_column = :some_value