0

I would like to develop java-webproject using JSF and PrimeFaces working in intranet, without the Internet connection.

In my project now in index.xhtml I use this section to get UI components and it works fine.

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

But now I want move my app to intranet, so I've got some questions:

  1. What (and where) should I download as UI library?
  2. Where I should store it in my project locally?
  3. What should I write in xmlns:p= property?

Sorry in advance for dumb questions.

Jasper de Vries
  • 19,370
  • 6
  • 64
  • 102

1 Answers1

2

What (and where) should I download as UI library?

Consider you want to make a Cake, you need tools, you need rules, the same here with UI library.

Where I should store it in my project locally?

In the classhpath of your project, if you are using maven, you can just declare the dependency in your pom.xml

What should I write in "xmlns:p=" property?

You have to write xmlns:p="http://primefaces.org/ui" nothing is change

I think you misunderstood what xmlns mean you can take a look about that here What does "xmlns" in XML mean?

Graham
  • 7,431
  • 18
  • 59
  • 84
Youcef LAIDANI
  • 55,661
  • 15
  • 90
  • 140