Front Page

This blogsite contains various tech notes from several different categories, i.e databases, version control systems, programming languages, adobe experience manager, programming frameworks, frontend technologies, software architecture, tips & tricks, lightning talks, agile software development solutions.

You will find here also the most important ones : tutorials. Nothing makes learning more effective than writing some working code 🙂

Whenever I find something useful, I will share it with you. I’ll also write my own articles and tutorials here.

Blog

Groovy for crawlling website meta tags

How to quickly get html meta tags of a page ? Here you can grab a short example of how to crawl html meta tags of a page. import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements; def url = “http://wordpress.com”; def document = Jsoup.connect(url).get(); def metaTags = document.getElementsByTag(“meta”); for (Element metaTag: metaTags) { def tagName …

REST services stubbing example using springboot and wiremock

Integration testing of microservices The main goal of Service Oriented Architecture is to define services that focus on delivering small, compact and most complete piece of business logic. To deliver complete user features, many services need to communicate with each other. That communication is often implemented as simple REST requests. The example I’ve prepared a …

Contact

Contact info:

Author e-mail : contact@wiktor.ovh

More : About Author