简体   繁体   中英

Loop list data in Java Spring Boot with Primefaces

Hello so i wanted to make a little projects, but i'm currently don't know the "keyword" to search for it. I wanted to make a job applying site, and how do i list all the job from job table in the so like "bootstrap card" but in Primefaces? Fyi: The region is from Region table. I don't know what to search the keyword for it...

在此处输入图像描述

PrimeFaces is an open-source user interface (UI) component library, the following components may help you to achieve your goal:

  1. NAVBAR: https://www.primefaces.org/showcase/ui/menu/menubar.xhtml

在此处输入图像描述

  1. SIDE MENU: https://www.primefaces.org/showcase/ui/menu/slideMenu.xhtml

在此处输入图像描述

  1. CARD: https://www.primefaces.org/showcase/ui/data/datagrid/basic.xhtml

在此处输入图像描述

How to use Primefaces

You just need to download PrimeFaces, add the primefaces-{version}.jar to your classpath and import the namespace to get started.

PrimeFaces namespace is necessary to add PrimeFaces components to your pages.

xmlns:p="http://primefaces.org/ui"

For PrimeFaces Mobile, the namespace would be;

xmlns:p="http://primefaces.org/mobile"

That's it

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:p="http://primefaces.org/ui">

     <h:head>

     </h:head>

     <h:body>

         <p:spinner />

     </h:body>
</html>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM