Alternatives to PrimeFaces logo

Alternatives to PrimeFaces

AngularJS, Vaadin, Spring MVC, RichFaces, and BootsFaces are the most popular alternatives and competitors to PrimeFaces.
110
185
+ 1
4

What is PrimeFaces and what are its top alternatives?

It is a popular open source framework for JavaServer Faces featuring over 100 components, touch optimized mobilekit, client side validation, theme engine and more.
PrimeFaces is a tool in the Front-End Frameworks category of a tech stack.

Top Alternatives to PrimeFaces

  • AngularJS
    AngularJS

    AngularJS lets you write client-side web applications as if you had a smarter browser. It lets you use good old HTML (or HAML, Jade and friends!) as your template language and lets you extend HTML’s syntax to express your application’s components clearly and succinctly. It automatically synchronizes data from your UI (view) with your JavaScript objects (model) through 2-way data binding. ...

  • Vaadin
    Vaadin

    It is the fastest way to build web applications in Java. It automates the communication between your server and the browser and gives you a high-level component API for all Vaadin components ...

  • Spring MVC
    Spring MVC

    A Java framework that follows the Model-View-Controller design pattern and provides an elegant solution to use MVC in spring framework by the help of DispatcherServlet. ...

  • RichFaces
    RichFaces

    It is an advanced UI component framework for easily integrating Ajax capabilities into business applications using JSF. ...

  • BootsFaces
    BootsFaces

    It is a powerful JSF framework that takes the best from Bootstrap and jQuery UI to let develop well-designed responsive state-of-the-art next-gen Front-end Enterprise Applications fast and easy supporting HTML5. ...

  • JSF
    JSF

    It is used for building component-based user interfaces for web applications and was formalized as a standard through the Java Community ...

  • Thymeleaf
    Thymeleaf

    It is a modern server-side Java template engine for both web and standalone environments. It is aimed at creating elegant web code while adding powerful features and retaining prototyping abilities. ...

  • Bootstrap
    Bootstrap

    Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile first projects on the web. ...

PrimeFaces alternatives & related posts

AngularJS logo

AngularJS

60.3K
43.4K
5.3K
Superheroic JavaScript MVW Framework
60.3K
43.4K
+ 1
5.3K
PROS OF ANGULARJS
  • 889
    Quick to develop
  • 589
    Great mvc
  • 573
    Powerful
  • 520
    Restful
  • 505
    Backed by google
  • 349
    Two-way data binding
  • 343
    Javascript
  • 329
    Open source
  • 307
    Dependency injection
  • 197
    Readable
  • 75
    Fast
  • 65
    Directives
  • 63
    Great community
  • 57
    Free
  • 38
    Extend html vocabulary
  • 29
    Components
  • 26
    Easy to test
  • 25
    Easy to learn
  • 24
    Easy to templates
  • 23
    Great documentation
  • 21
    Easy to start
  • 19
    Awesome
  • 18
    Light weight
  • 15
    Angular 2.0
  • 14
    Efficient
  • 14
    Javascript mvw framework
  • 14
    Great extensions
  • 11
    Easy to prototype with
  • 9
    High performance
  • 9
    Coffeescript
  • 8
    Two-way binding
  • 8
    Lots of community modules
  • 8
    Mvc
  • 7
    Easy to e2e
  • 7
    Clean and keeps code readable
  • 6
    One of the best frameworks
  • 6
    Easy for small applications
  • 5
    Works great with jquery
  • 5
    Fast development
  • 4
    I do not touch DOM
  • 4
    The two-way Data Binding is awesome
  • 3
    Hierarchical Data Structure
  • 3
    Be a developer, not a plumber.
  • 3
    Declarative programming
  • 3
    Typescript
  • 3
    Dart
  • 3
    Community
  • 2
    Fkin awesome
  • 2
    Opinionated in the right areas
  • 2
    Supports api , easy development
  • 2
    Common Place
  • 2
    Very very useful and fast framework for development
  • 2
    Linear learning curve
  • 2
    Great
  • 2
    Amazing community support
  • 2
    Readable code
  • 2
    Programming fun again
  • 2
    The powerful of binding, routing and controlling routes
  • 2
    Scopes
  • 2
    Consistency with backend architecture if using Nest
  • 1
    Fk react, all my homies hate react
CONS OF ANGULARJS
  • 12
    Complex
  • 3
    Event Listener Overload
  • 3
    Dependency injection
  • 2
    Hard to learn
  • 2
    Learning Curve

related AngularJS posts

Simon Reymann
Senior Fullstack Developer at QUANTUSflow Software GmbH · | 27 upvotes · 4.7M views

Our whole Node.js backend stack consists of the following tools:

  • Lerna as a tool for multi package and multi repository management
  • npm as package manager
  • NestJS as Node.js framework
  • TypeScript as programming language
  • ExpressJS as web server
  • Swagger UI for visualizing and interacting with the API’s resources
  • Postman as a tool for API development
  • TypeORM as object relational mapping layer
  • JSON Web Token for access token management

The main reason we have chosen Node.js over PHP is related to the following artifacts:

  • Made for the web and widely in use: Node.js is a software platform for developing server-side network services. Well-known projects that rely on Node.js include the blogging software Ghost, the project management tool Trello and the operating system WebOS. Node.js requires the JavaScript runtime environment V8, which was specially developed by Google for the popular Chrome browser. This guarantees a very resource-saving architecture, which qualifies Node.js especially for the operation of a web server. Ryan Dahl, the developer of Node.js, released the first stable version on May 27, 2009. He developed Node.js out of dissatisfaction with the possibilities that JavaScript offered at the time. The basic functionality of Node.js has been mapped with JavaScript since the first version, which can be expanded with a large number of different modules. The current package managers (npm or Yarn) for Node.js know more than 1,000,000 of these modules.
  • Fast server-side solutions: Node.js adopts the JavaScript "event-loop" to create non-blocking I/O applications that conveniently serve simultaneous events. With the standard available asynchronous processing within JavaScript/TypeScript, highly scalable, server-side solutions can be realized. The efficient use of the CPU and the RAM is maximized and more simultaneous requests can be processed than with conventional multi-thread servers.
  • A language along the entire stack: Widely used frameworks such as React or AngularJS or Vue.js, which we prefer, are written in JavaScript/TypeScript. If Node.js is now used on the server side, you can use all the advantages of a uniform script language throughout the entire application development. The same language in the back- and frontend simplifies the maintenance of the application and also the coordination within the development team.
  • Flexibility: Node.js sets very few strict dependencies, rules and guidelines and thus grants a high degree of flexibility in application development. There are no strict conventions so that the appropriate architecture, design structures, modules and features can be freely selected for the development.
See more
Simon Reymann
Senior Fullstack Developer at QUANTUSflow Software GmbH · | 23 upvotes · 4.7M views

Our whole Vue.js frontend stack (incl. SSR) consists of the following tools:

  • Nuxt.js consisting of Vue CLI, Vue Router, vuex, Webpack and Sass (Bundler for HTML5, CSS 3), Babel (Transpiler for JavaScript),
  • Vue Styleguidist as our style guide and pool of developed Vue.js components
  • Vuetify as Material Component Framework (for fast app development)
  • TypeScript as programming language
  • Apollo / GraphQL (incl. GraphiQL) for data access layer (https://apollo.vuejs.org/)
  • ESLint, TSLint and Prettier for coding style and code analyzes
  • Jest as testing framework
  • Google Fonts and Font Awesome for typography and icon toolkit
  • NativeScript-Vue for mobile development

The main reason we have chosen Vue.js over React and AngularJS is related to the following artifacts:

  • Empowered HTML. Vue.js has many similar approaches with Angular. This helps to optimize HTML blocks handling with the use of different components.
  • Detailed documentation. Vue.js has very good documentation which can fasten learning curve for developers.
  • Adaptability. It provides a rapid switching period from other frameworks. It has similarities with Angular and React in terms of design and architecture.
  • Awesome integration. Vue.js can be used for both building single-page applications and more difficult web interfaces of apps. Smaller interactive parts can be easily integrated into the existing infrastructure with no negative effect on the entire system.
  • Large scaling. Vue.js can help to develop pretty large reusable templates.
  • Tiny size. Vue.js weights around 20KB keeping its speed and flexibility. It allows reaching much better performance in comparison to other frameworks.
See more
Vaadin logo

Vaadin

194
275
36
Components and tools for building web apps in Java
194
275
+ 1
36
PROS OF VAADIN
  • 9
    Java
  • 7
    Compatibility
  • 6
    Components
  • 6
    Open Source
  • 3
    Performance
  • 2
    Example packages
  • 2
    Abstraction
  • 1
    OSGI Support
CONS OF VAADIN
  • 3
    Paid for more features

related Vaadin posts

Spring MVC logo

Spring MVC

480
517
0
A Java framework which is used to build web applications
480
517
+ 1
0
PROS OF SPRING MVC
    Be the first to leave a pro
    CONS OF SPRING MVC
      Be the first to leave a con

      related Spring MVC posts

      NIDHISH PUTHIYADATH
      Lead Software Engineer at EDIFECS · | 1 upvote · 302.2K views

      Material Design for Angular Angular 2 Node.js TypeScript Spring-Boot RxJS Microsoft SQL Server Hibernate Spring MVC

      We built our customer facing portal application using Angular frontend backed by Spring boot.

      See more
      RichFaces logo

      RichFaces

      7
      6
      0
      The next-generation JSF component framework by JBoss
      7
      6
      + 1
      0
      PROS OF RICHFACES
        Be the first to leave a pro
        CONS OF RICHFACES
          Be the first to leave a con

          related RichFaces posts

          BootsFaces logo

          BootsFaces

          4
          17
          0
          Lets you develop Front-end Enterprise Applications fast and easy
          4
          17
          + 1
          0
          PROS OF BOOTSFACES
            Be the first to leave a pro
            CONS OF BOOTSFACES
              Be the first to leave a con

              related BootsFaces posts

              JSF logo

              JSF

              134
              222
              4
              It is used for building component-based web interfaces
              134
              222
              + 1
              4
              PROS OF JSF
              • 2
                Rich and comprehensive Request Life-cycle
              • 1
                Very Mature UI framework
              • 1
                Server Side component
              CONS OF JSF
                Be the first to leave a con

                related JSF posts

                Hello guys, my first time here, and for requesting advice.

                I am a JavaScript Developer MERN Stack with a focus on Frontend Development. I wanna go more to Backend Development.

                Which Language has a Solid Ecosystem and not so many changes like JavaScript Frontend, quite Frankly that's freaking me out nowadays!

                In my Location Germany Industries, Finance, Utilities, Insurances, Retails, and Healthcare dominate Java in the Backend. In my case Java is the logical choice BUT, XML, old codebase, JSP/JSF , boring and verbose syntax without Syntactic Sugar, test Battle, and so on make me crazy.

                I have Java, Python, Golang, and Node.js/TypeScript as a choice, but because of a lack of Backend knowledge, I can't make a decision. Which Language and Ecosystem should I learn and master for a long time, my Goal is to work with a selected stack for 10+ years and I don't do Data Science only Software Engineering.

                Thanks for reading and Advice! Important! !!! I see via Email somebody send me an Advice, but unfortunately i can't see/read your Advice here :( Users like: Jose Manuel Ortega or nullStack65....

                See more

                Hello guys! I would ask for your advice. Our situation is like that there will be a project to revamp workflows and introduce new services like mobile apps, machine learning, and some online services that would use cloud storage. We use JSF, JavaScript, Ajax, Spring, Oracle 12c running on Linux (VM) and providing online services to internal users and the public. But, we are not technically savvy enough to evaluate what tools should be introduced. Personally, I am evaluating whether to take this opportunity to change our practice/PM approach from Prince to Scrum/Agile (It seemed that DevOps is popular) ... Since we adopt ISO 27001 and ISO 20000, security is a crucial factor that we consider. Would you please help to recommend a list of tools and explain the reasons why you recommend them? Thanks in advance~!

                See more
                Thymeleaf logo

                Thymeleaf

                196
                291
                4
                A template engine for Java
                196
                291
                + 1
                4
                PROS OF THYMELEAF
                • 4
                  Its delicous
                CONS OF THYMELEAF
                  Be the first to leave a con

                  related Thymeleaf posts

                  I am consulting for a company that wants to move its current CubeCart e-commerce site to another PHP based platform like PrestaShop or Magento. I was interested in alternatives that utilize Node.js as the primary platform. I currently don't know PHP, but I have done full stack dev with Java, Spring, Thymeleaf, etc.. I am just unsure that learning a set of technologies not commonly used makes sense. For example, in PrestaShop, I would need to work with JavaScript better and learn PHP, Twig, and Bootstrap. It seems more cumbersome than a Node JS system, where the language syntax stays the same for the full stack. I am looking for thoughts and advice on the relevance of PHP skillset into the future AND whether the Node based e-commerce open source options can compete with Magento or Prestashop.

                  See more
                  Остап Комплікевич

                  I need some advice to choose an engine for generation web pages from the Spring Boot app. Which technology is the best solution today? 1) JSP + JSTL 2) Apache FreeMarker 3) Thymeleaf Or you can suggest even other perspective tools. I am using Spring Boot, Spring Web, Spring Data, Spring Security, PostgreSQL, Apache Tomcat in my project. I have already tried to generate pages using jsp, jstl, and it went well. However, I had huge problems via carrying already created static pages, to jsp format, because of syntax. Thanks.

                  See more
                  Bootstrap logo

                  Bootstrap

                  55.3K
                  13K
                  7.7K
                  Simple and flexible HTML, CSS, and JS for popular UI components and interactions
                  55.3K
                  13K
                  + 1
                  7.7K
                  PROS OF BOOTSTRAP
                  • 1.6K
                    Responsiveness
                  • 1.2K
                    UI components
                  • 943
                    Consistent
                  • 779
                    Great docs
                  • 677
                    Flexible
                  • 472
                    HTML, CSS, and JS framework
                  • 411
                    Open source
                  • 375
                    Widely used
                  • 368
                    Customizable
                  • 242
                    HTML framework
                  • 77
                    Easy setup
                  • 77
                    Mobile first
                  • 77
                    Popular
                  • 58
                    Great grid system
                  • 52
                    Great community
                  • 38
                    Future compatibility
                  • 34
                    Integration
                  • 28
                    Very powerful foundational front-end framework
                  • 24
                    Standard
                  • 23
                    Javascript plugins
                  • 19
                    Build faster prototypes
                  • 18
                    Preprocessors
                  • 14
                    Grids
                  • 9
                    Good for a person who hates CSS
                  • 8
                    Clean
                  • 4
                    Rapid development
                  • 4
                    Easy to setup and learn
                  • 4
                    Love it
                  • 3
                    Great and easy to use
                  • 2
                    Powerful grid system, Rapid development, Customization
                  • 2
                    Boostrap
                  • 2
                    Devin schumacher rules
                  • 2
                    Community
                  • 2
                    Provide angular wrapper
                  • 2
                    Great and easy
                  • 2
                    Great customer support
                  • 2
                    Popularity
                  • 2
                    Clean and quick frontend development
                  • 2
                    Great and easy to make a responsive website
                  • 2
                    Sprzedam opla
                  • 2
                    Easy to use
                  • 1
                    Not tied to jQuery
                  • 1
                    Responsive design
                  • 1
                    Love the classes?
                  • 1
                    Painless front end development
                  • 1
                    Design Agnostic
                  • 1
                    So clean and simple
                  • 1
                    Numerous components
                  • 1
                    Recognizable
                  • 1
                    Intuitive
                  • 1
                    Material-ui
                  • 1
                    Felxible, comfortable, user-friendly
                  • 1
                    Poop
                  • 1
                    Pre-Defined components
                  • 1
                    It's fast
                  • 1
                    Geo
                  • 1
                    The fame
                  • 1
                    Easy setup2
                  CONS OF BOOTSTRAP
                  • 26
                    Javascript is tied to jquery
                  • 16
                    Every site uses the defaults
                  • 15
                    Grid system break points aren't ideal
                  • 14
                    Too much heavy decoration in default look
                  • 8
                    Verbose styles
                  • 1
                    Super heavy

                  related Bootstrap posts

                  Ganesa Vijayakumar
                  Full Stack Coder | Technical Lead · | 19 upvotes · 4.5M views

                  I'm planning to create a web application and also a mobile application to provide a very good shopping experience to the end customers. Shortly, my application will be aggregate the product details from difference sources and giving a clear picture to the user that when and where to buy that product with best in Quality and cost.

                  I have planned to develop this in many milestones for adding N number of features and I have picked my first part to complete the core part (aggregate the product details from different sources).

                  As per my work experience and knowledge, I have chosen the followings stacks to this mission.

                  UI: I would like to develop this application using React, React Router and React Native since I'm a little bit familiar on this and also most importantly these will help on developing both web and mobile apps. In addition, I'm gonna use the stacks JavaScript, jQuery, jQuery UI, jQuery Mobile, Bootstrap wherever required.

                  Service: I have planned to use Java as the main business layer language as I have 7+ years of experience on this I believe I can do better work using Java than other languages. In addition, I'm thinking to use the stacks Node.js.

                  Database and ORM: I'm gonna pick MySQL as DB and Hibernate as ORM since I have a piece of good knowledge and also work experience on this combination.

                  Search Engine: I need to deal with a large amount of product data and it's in-detailed info to provide enough details to end user at the same time I need to focus on the performance area too. so I have decided to use Solr as a search engine for product search and suggestions. In addition, I'm thinking to replace Solr by Elasticsearch once explored/reviewed enough about Elasticsearch.

                  Host: As of now, my plan to complete the application with decent features first and deploy it in a free hosting environment like Docker and Heroku and then once it is stable then I have planned to use the AWS products Amazon S3, EC2, Amazon RDS and Amazon Route 53. I'm not sure about Microsoft Azure that what is the specialty in it than Heroku and Amazon EC2 Container Service. Anyhow, I will do explore these once again and pick the best suite one for my requirement once I reached this level.

                  Build and Repositories: I have decided to choose Apache Maven and Git as these are my favorites and also so popular on respectively build and repositories.

                  Additional Utilities :) - I would like to choose Codacy for code review as their Startup plan will be very helpful to this application. I'm already experienced with Google CheckStyle and SonarQube even I'm looking something on Codacy.

                  Happy Coding! Suggestions are welcome! :)

                  Thanks, Ganesa

                  See more
                  Francisco Quintero
                  Tech Lead at Dev As Pros · | 13 upvotes · 1.6M views

                  For Etom, a side project. We wanted to test an idea for a future and bigger project.

                  What Etom does is searching places. Right now, it leverages the Google Maps API. For that, we found a React component that makes this integration easy because using Google Maps API is not possible via normal API requests.

                  You kind of need a map to work as a proxy between the software and Google Maps API.

                  We hate configuration(coming from Rails world) so also decided to use Create React App because setting up a React app, with all the toys, it's a hard job.

                  Thanks to all the people behind Create React App it's easier to start any React application.

                  We also chose a module called Reactstrap which is Bootstrap UI in React components.

                  An important thing in this side project(and in the bigger project plan) is to measure visitor through out the app. For that we researched and found that Keen was a good choice(very good free tier limits) and also it is very simple to setup and real simple to send data to

                  Slack and Trello are our defaults tools to comunicate ideas and discuss topics, so, no brainer using them as well for this project.

                  See more