Changes to Neo4j OGM

We have been using the Spring OGM via teh Spring-starter for some years now. We have started a process to upgrade Spring Boot from V2.7 to V3.0. When we do this we are now getting a message that one line of code we use extensively is deprecated. Specifcally, in the POJO's that define the nodes we use

	@Id @GeneratedValue  private Long id;

The message we get is that "The Neo4j internal Long Ids are deprecated, please consider using an external ID generator." It is clear that NEO if moving to generated UUIDs rather than LONGs. Is there a global trick for us to replace the ID in the database that us currently a LONG with a UUID?

We can handle the code change, that will be relatively easy, well, actually, it don't but we can cope. But changing the database is a different level of complexity.