In this article, we will see Micro service and Design Patterns.
Micro service and Design Patterns
Micro service aka MSA has become the go-solution for most of the Enterprise to build or migrate the applications. They are known to solve various snags.
In order to build effective Microservice. We need to weld on to the design patterns, which helps us to improve the performance of the application.
Let us see the below topics as part of this article:
Microservices, aka MSA aka microservice architecture, is an style that structures an application as small collection of autonomous services which is surrounded around Business domain or models.
Ethics followed while Designing Microservice Architecture
Independent & Autonomous services
Scalability
Decentralization
Robust Services
Real-Time Load balancing
Availability
Continuous delivery through DevOps integration
Seamless API integration and continuous monitoring
Make WordPress as Android App. Yes, follow the article from top to bottom and do not miss out anything. In the end you will see your website or WordPress blog in Android phone as an application.
You can also publish the app in Google Play Store or any eco-system for Android apps (Such as Amazon app store, Samsung galaxy app store, Honor/Huawei App Gallery and So on).
How to Make WordPress as Android App?
Converting WordPress blog or Website is easy if you have hands-on with Android Studio and Android SDKs.
Yes, you need to know little bit of java coding knowledge and basics of Android application development. Do not worry if you have very little knowledge on these both should also be fine. If you follow this article carefully.
I was wondering always, why it is always main method is the starting point for the Java program.
Well When i was matured enough to read the Java Specification i learnt why and whether can it be changed ? Okay Lets See !!
Why main method ?
Main method is the starting point for the java program, JVM initialize the class and invokes main method, having below listed specifications (reference 12.1.4).
Should be named as main
Should be public
Should be static
Should accept String array as argument.
Return type is void
As based on the above specification, we can conclude that we cannot rename the main method.
Some Additional Info.!
public static void main(String[] args) // this is valid
public static void main(String… args) //String… this is also valid where it is available from the java 5
public static void main(String args[]) //This is valid but not recommended because the array brackets in the variable)