From 922efbb6dd293d4409d0796e7e221e6fd24683cb Mon Sep 17 00:00:00 2001 From: Maicon Mauricio <64911189+maiconandsilva@users.noreply.github.com> Date: Mon, 20 Mar 2023 10:00:46 -0300 Subject: [PATCH] Add spring-boot-devtools instructions --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index 48cfd64..f47db26 100644 --- a/README.md +++ b/README.md @@ -103,6 +103,21 @@ zk.xml: ``` +### Spring Boot dev-tools + +In order to make ZK work with __spring-boot-devtools__ without raising any errors create a `META-INF/spring-devtools.properties` in the `grails-app/conf/` folder including Grailszk, all ZK dependencies, components, themes and plugins. e.g: + +```shell +restart.include.zk=/z[\\w]+-[\\w\\d-\\.]+\\.jar +restart.include.ckez=/ckez-(.*).jar +restart.include.breeze=/breeze-(.*).jar +restart.include.grailszk=/grailszk-(.*).jar +restart.include.silvertail=/silvertail-(.*).jar +restart.include.iceblue_c=/iceblue_c-(.*).jar +restart.include.sapphire=/sapphire-(.*).jar +restart.include.codemirror=/(.*)codemirror(.*).jar +``` + ## Usage - See [this simple Grailszk Example project](https://github.com/maiconandsilva/grailszk-example).