I have generated micronaut (crud) application with gradle.
Some rest api and configured swagger also which is working fine.
If I run application with ./gradlew run then swagger working.
As soon as I generate war and deploy to external Tomcat, swagger UI is not loading.
Related
I am new to DevOps. Recently I practiced the Docker examples. I have one usecase in my current project. Here it is
This is java project. It contains one war project that depends on jar project. Build tool is maven.
We are using Jboss Wildfly server.
DataBase is mysql 5.7.
We are using testng framework for the unit test cases.
sonarqube for code analysis. Selenium for testing.
So in any linux box the infrastructure we need is java8, wildfly server and mysql 5.7.
Consider we have 2 boxes. one is dev and another is test. Developer works on his local windows machine.
Sometimes we need some configurations required in jboss folder. Suppose we changed one xml in wildfly configuration folder in this release. How to communicate same to dev and test boxes as local machine. Another case is for dev box we need different configuration in xml and for test box it is different from dev box(SSL information in standalone.xml and user properties). How to handle this?
I would suggest to run all required stack (wildfly and mysql) via docker-compose. Also you can extend official wildfly image to provide your custom configuration so you should build 2 different images, one with tag 'dev' and second with tag 'test'.
I have created Pipeline in Python using Apache Beam SDK, and Dataflow jobs are running perfectly from command-line.
Now, I'd like to run those jobs from UI. For that i have to create template file for my job. I found steps to create template in Java using maven.
But how do I do it using the Python SDK?
Templates are available for creation in the Dataflow Python SDK since April of 2017. Here is the documentation.
To run a template, no SDK is needed (which is the main problem templates try to solve), so you can run them from the UI, REST API, or CL and here is how.
Can somebody tell me, how to integrate the Ember-CLI dist-folder into a Grails plugin? My plan is to have a Grails application that could be extended by grails plugins. A plugin should contain a Grails server (with REST-services) and an Ember-CLI client. The Ember-CLI *.hbs should be displayed in the content area of the main grails application.
I've been working with a grails 1.3.7 project within STS for the last few months.
Our test and production environments use JBoss 5.1.
I upgraded our grails app to 2.1.0 recentlly and it all ran ok locally.
Major problems occured when I deployed it to our test environment (Jboss issues).
So in order to avoid this in future I would like to develop locally using JBoss also.
Is there a Eclipse/STS plugin I can use for this?
Thanks
Don't think there's a specific plugin for jboss
Seems your only options now are tomcat and jetty, if you need to stick with the 'run-app' command
If you can give up the debug console and check your test info at the browser, then you can probably write a small script to auto-deploy to a local jboss server, which you can set up through eclipse workspace
I am working on deploying grails war on Tomcat server in Unix. I generated the war thru STS. Tested the generated war on tomcat 6.0 in windows box. This works fine.I deployed the same war in Unix machine, did not face any issues during server start up. But when i access the URL i am getting "Internet Explorer cannot display the webpage". No exceptions or errors displayed in logs.
I am using Grails 2.0.1 and tried deploying the war in Tomcat 7.0 and 6.0.