user2849738
user2849738

Reputation:

IntelliJ and JPA Controller Class

IntelliJ has a built in JPA Class generator but it only generates entities.

Does it have a generator for entity controller class like in NetBeans and Eclipse's TeloSys Tools ?

Upvotes: 2

Views: 870

Answers (1)

lgu
lgu

Reputation: 2460

You can use the CLI (Command Line Interface) version of the Telosys Code Generator

See https://www.telosys.org/cli.html and https://doc.telosys.org/telosys-cli

This tool can be used in association with any kind of IDE (IntelliJ, NetBeans, VSCode, Atom, etc )

You just have to define where to generate the files (the 'destination folder' in the configuration file)

You can reuse existing templates (you can also create your own templates if necessary)

Upvotes: 3

Related Questions