I'm using Grails for a web project for a CSE class in college. I've noticed many of the other groups doing this project are using Bootstrap 4 for the web design (I'm in the only group using Grails). I looked into Bootstrap 4 and I really love the way it looks. Personally I don't like the way Grails looks with standard HTML. I was wondering if there is a way that I can use Bootstrap 4 with Grails. For example in standard HTML I can have a button and forms that will submit data to a controller and some action will happen, it doesn't seem to work the same way with Grails.
Would anyone know if I can integrate Bootstrap 4 with Grails and if so how I can do it?
Bootstrap has nothing to do with Grails. Just include the dependencies and use the bootstrap classes in your GSP just like you'd do in a plain HTML page. You can use the <g:form>
tag to post to your Grails controller.