Free Online Whiteboard Base64 Converter JSON Utility SmartTool PDF

Category: Blog

SHA -256 Hash in Java Spring boot 0

SHA -256 Hash in Java Spring boot

In Cryptography, SHA is cryptographic hash function which takes input as 20 Bytes and rendered the hash value in hexadecimal number, 40 digits long approx. Message Digest Class:To calculate cryptographic hashing value in Java,...

Spring Boot DataSource Configuration 0

Spring Boot DataSource Configuration

DataSource configuration is provided by configuration properties entries ( spring.datasource.* ) in application.properties file. The properties configuration decouples the configuration from the application code. This way, we can import the datasource configurations from even...

Can I create XML pages using JSP technology? 0

Can I create XML pages using JSP technology?

Yes, the JSP specification does support creation of XML documents. For simple XML generation, the XML tags may be included as static template portions of the JSP page. Dynamic generation of XML tags occurs...

How is a JSP page invoked and compiled? 0

How is a JSP page invoked and compiled?

Pages built using JSP technology are typically implemented using a translation phase that is performed once, the first time the page is called. The page is compiled into a Java Servlet class and remains...

How do JSP pages work? 0

How do JSP pages work?

JSP engine interprets tags, and generates the content required – for example, by calling a bean, accessing a database with the JDBC API or including a file. It then sends the results back in...