Ahoj, nevíte náhodou jestli má Java for Web taky něco jako je "MS VS ASP .NET Razor" ekvivalent ?
to znamená abych moch psát HTML kód v tomhle stylu ale v Javě:
@*
*@
@model WebApp.Models.Student
@{
Layout = null;
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta name="viewport" content="width=device-width" />
<title>@ViewBag.Title</title>
</head>
<body>
<h1>@ViewBag.Header</h1>
@{
WebApp.Models.Student student = ViewBag.Student as WebApp.Models.Student;
}
<div>
StudentId : @Model.StudentId
</div>
<div>
Name : @Model.Name
</div>
<div>
Branch : @Model.Branch
</div>
<div>
Section : @Model.Section
</div>
<div>
Gender : @Model.Gender
</div>
</body>
</html>