Skip to main content

about




SHRIKANT K. MUTYALA

MCA STUDENT

KAVIKULGURU INSTITUTE OF TECHNOLOGY AND SCIENCE, RAMTEK, NAGPUR

shrikant mutyala








Popular posts from this blog

Properties

Appendix A. Common application properties Various properties can be specified inside your  application.properties / application.yml  file or as command line switches. This section provides a list common Spring Boot properties and references to the underlying classes that consume them. Property contributions can come from additional jar files on your classpath so you should not consider this an exhaustive list. It is also perfectly legit to define your own properties. This sample file is meant as a guide only. Do  not  copy/paste the entire content into your application; rather pick only the properties that you need. # =================================================================== # COMMON SPRING BOOT PROPERTIES # # This sample file is provided as a guideline. Do NOT copy it in its # entirety to your own application. ^^^ # =================================================================== # ---------...

Zero Conditional

Form In zero conditional sentences, the tense in both parts of the sentence is the simple present. If clause (condition) Main clause (result) If + simple present simple present If this thing happens that thing happens. As in all conditional sentences, the order of the clauses is not fixed. You may have to rearrange the pronouns and adjust punctuation when you change the order of the clauses, but the meaning is identical. In zero conditional sentences, you can replace "if" with "when", because both express general truths. The meaning will be unchanged. Examples If you heat ice, it melts. Ice melts if you heat it. When you heat ice, it melts. Ice melts when you heat it. If it rains, the grass gets wet. The grass gets wet if it rains. When it rains, the grass gets wet. The grass gets wet when it rains. Function The zero conditional is used to make statements about the real world, and often refers to general tru...

Annotations in java

Annotations are java language feature introduced in java 5 version Annotations can be used for   Automatic generation of   configuration file(Deployment descriptor(web.xml),bean classes,etc) Instead of describing the components    with the Xml file we can describe with the annotations in the   java source file itself. MetaData:- Data about the data is called as MetaData. The mainpurpose of Annotations in java apps to represent MetaData. to represent MetaData it is possible to   use comments directly. but commneted MetaData will be eliminated by   lexical-Analizer in compiler as part of compilation process,as   a result   commented meta data will be available in the respective .class files. In general to simplyfy debugging,Testing & to execute Enterprise app like web-app,distributed app we have to bring the metadata upto runtime. to achive this requirement we have to use Annotation over-comment. In general to bring MetaDa...