If you use Vertx, It could be helpful to create a jar or war where Vertx is included. If you use maven. You can add the following code in your pom.xml: <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.4.1</version> <executions> <execution> <phase>package</phase> <goals>...
How to enable CORS in Solr
If you are using Solr with Angular or something like that. The browser can be annoying about cross site scripting. To enable CORS in Solr you just have to add the code below in solr-x.x.x/server/solr-webapp/webapp/WEB-INF/web.xml (x.x.x stands for the solr version). Just after the <web-app> tag.
How to add a locale to Jasperserver
To add a locale to Jasperserver you need to open the applicationContext-security.xml file. This is located in the WEB-INF folder.
Free online tools for developers
On freeformatter.com/ you have many free online tools for developers. The tools contain converter, formatters, decryptors, validators and many more. It could be used for XML, HTML, SQL, JSON…
How to unit test a web service
To test your web service, you can use Smock. Smock compares your request with the response by XML files. You just need a response.xml file with your response and a request.xml file with your request.