JSP İLE FONKSİYON YAZIP ÇAĞIRMAK



















<%--

    Document   : Ornek
    Created on : 15.Şub.2018, 23:00:03
    Author     : Gökhan
--%>

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSP Page</title>
</head>
<body>
    <%!
        String ex="";
        public String TerstenYaz(){
            for(int i=6;i>0;i--)
                ex=ex+"<h" +i+ ">" +"CODINGISLIFE"+ "</h" +i+ ">";
        return ex;
    }
%>
<%= TerstenYaz() %>
</body>
</html>

Hiç yorum yok:

Yorum Gönder

Spring Boot Uygulamasını Heroku üzerinde Deploy Etme

Bu yazımızda sizlere spring boot ile yazılmış basit bir Rest api'nin heroku üzerinde nasıl deploy edebileceğimizi göstereceğim. Önce ...