Web
Veliki Market
Web aplikacija za oglašavanje samostalnih proizvođača hrane U poslednjih nekoliko dana smo realizovali spontanu ideju neformalne grupe stručnih ljudi, te vam ponosno predstavljamo Veliki market – web aplikaciju na WordPress platformi, gde možete potpuno besplatno oglasiti i pretražiti samostalne proizvođače hrane. Usluga je potpuno besplatna i takva će i ostati, a posebnu zahvalnost izražavamo mCloud-u … Read more
Implementation of CRUD operations for database entity with AngularJS, Spring Boot and Spring-Data-JPA
In this article, thanks to Veselin Pavlov, we will see how to implement CRUD (Create, Read, Update, Delete) functionality for a database entity. We will start by creating the tables in the database, after that we will define the entity in the java code. We will use spring-data-jpa to implement JPA repositories and we will … Read more
Data Access Object (DAO) design pattern in Java
Data Access Object (DAO) design pattern in Java – Tutorial Example Data Access Object or DAO design pattern is a popular design pattern to implement persistence layer of Java application. DAO pattern is based on abstraction and encapsulation design principles and shields rest of application from any change in the persistence layer e.g. change of … Read more
How to Read, Write XLSX File in Java – Apache POI Example
No matter how Microsoft is doing in comparison with Google, Microsoft Office is still the most used application in software world. Other alternatives like OpenOffice and LiberOffice have failed to take off to challenge MS Office. What this mean to a Java application developer? Because of huge popularity of MS office products you often need … Read more
Getting Started with Web Applications
A web application is a dynamic extension of a web or application server. There are two types of web applications: Presentation-oriented: A presentation-oriented web application generates interactive web pages containing various types of markup language (HTML, XML, and so on) and dynamic content in response to requests. Chapters Chapter 4, Java Servlet Technology through Chapter 15, Internationalizing and Localizing Web … Read more
HTML
HTML Full list of HTML elements As a reminder, in most browsers you can right-click on a page and select View Source to see the HTML code used to render the page. Basic HTML Tag Description Example <html> All content of your webpage must go inside <html></html> tags. <head> Contains information about the webpage.The title tag goes inside <head></head> tags. … Read more