首頁(yè) > 計(jì)算機(jī)網(wǎng)絡(luò) >
編程語(yǔ)言與程序設(shè)計(jì)
> Full Stack Development with JHipster最新章節(jié)目錄
舉報(bào)

會(huì)員
Full Stack Development with JHipster
Thisbookwillappealtodeveloperswhowouldliketobuildmodernwebapplicationsquickly.AbasicknowledgeoftheSpringecosystemwouldbeanaddedadvantage.
目錄(328章)
倒序
- 封面
- Title Page
- Copyright and Credits
- Full Stack Development with JHipster
- Dedication
- Packt Upsell
- Why subscribe?
- PacktPub.com
- Foreword
- Contributors
- About the authors
- About the reviewers
- Packt is searching for authors like you
- Preface
- Who this book is for
- What this book covers
- To get the most out of this book
- Download the example code files
- Conventions used
- Get in touch
- Reviews
- Introduction to Modern Web Application Development
- Modern full-stack web development
- Web architecture patterns
- Monolithic web architecture
- Microservice architecture
- Choosing the right pattern
- When to choose a monolithic architecture
- When to choose a microservice architecture
- Summary
- Getting Started with JHipster
- Why JHipster?
- Goal and adoption of JHipster
- Introduction to technologies available
- Client-side technologies
- HTML5 and CSS3
- HTML5
- CSS3
- Sass
- Bootstrap
- MVVM framework
- Angular
- React
- Build tools
- Webpack
- BrowserSync
- Testing tools
- Karma
- Protractor
- Internationalization
- Server-side technologies
- Spring Framework
- Spring Boot
- Spring Security
- Spring MVC
- Spring data
- Security
- JWT
- Session
- OAuth2
- Build tools
- Maven
- Gradle
- Hibernate
- Liquibase
- Caching
- Ehcache
- Hazelcast
- Infinispan
- Swagger
- Thymeleaf
- Dropwizard metrics
- WebSocket
- Kafka
- Testing frameworks
- JUnit
- Gatling
- Cucumber
- Introduction to database options
- SQL databases
- H2
- MySQL
- MariaDB
- PostgreSQL
- MS SQL
- Oracle
- NoSQL databases
- MongoDB
- Cassandra
- Elasticsearch
- Installation and setup
- Prerequisites
- Tools required
- Installation procedure
- Java 8
- Git
- Node.js
- Yarn
- Docker
- IDE configuration
- System setup
- Installation of JHipster
- Summary
- Building Monolithic Web Applications with JHipster
- Application generation
- Step 1 – preparing the workspace
- Step 2 – generating code using JHipster
- Server-side options
- Client-side options
- Internationalization options
- Testing
- Modules
- Code walkthrough
- File structure
- Server-side source code
- Java source
- Resources
- client-side source code
- Starting the application
- Application modules
- Home and Login modules
- Account modules
- Settings
- Password
- Registration
- Admin module
- User management
- Metrics
- Health
- Configuration
- Audits
- Logs
- API
- Running generated tests
- Server-side tests
- Client-side tests
- Summary
- Entity Modeling with JHipster Domain Language
- Introduction to JDL
- DSL grammar for JDL
- Entity modeling with JDL
- Relationship management
- DTO service and pagination options
- JDL Studio
- Use case entity model with explanation
- Entities
- Relationships
- Options for entities
- Entity generation with JHipster
- Generated code walkthrough
- Server-side source code
- Domain class for the entity
- Repository interface for the entity
- Service class for the entity
- Resource class for the entity
- Client side
- TypeScript model class for the entity
- Angular services for the entity
- Angular components of the entity
- Angular route for the entity
- Angular module for the entity
- Generated pages
- Running generated tests
- Summary
- Customization and Further Development
- Live reload for development
- Spring Boot DevTools
- Webpack dev server and BrowserSync
- Setting up live reload for an application
- Customizing the Angular frontend for an entity
- Editing an entity using the JHipster entity sub-generator
- Changing the look and feel of the application
- Adding a new i18n language
- Authorization with Spring Security
- Limiting access to entities
- Limiting access to create/edit/delete entities
- Limiting access to data of other users
- Summary
- Testing and Continuous Integration
- Fixing and running tests
- Continuous integration
- CI/CD tools
- Jenkins
- Travis CI
- GitLab CI
- CircleCI
- Setting up Jenkins
- Creating a Jenkins pipeline using JHipster
- The Jenkinsfile and its stages
- Setting up the Jenkinsfile in a Jenkins server
- Summary
- Going into Production
- An Introduction to Docker
- Docker containers
- The Dockerfile
- The Docker Hub
- Docker compose
- Starting the production database with Docker
- An introduction to Spring profiles
- Packaging the application for local deployment
- Building and deploying using Docker
- Building and deploying an executable archive
- Upgrading to the newest version of JHipster
- An introduction to deployment options supported by JHipster
- Heroku
- Cloud Foundry
- Amazon Web Services
- Production deployment to Heroku cloud
- Summary
- Introduction to Microservice Server-Side Technologies
- Microservice applications versus monoliths
- Building blocks of a microservice architecture
- Service registry
- Service discovery
- Health check
- Dynamic routing and resiliency
- Security
- Fault tolerance and failover
- JHipster Registry
- Netflix Eureka server
- Spring cloud config server
- HashiCorp Consul
- Service discovery
- Health discovery
- K/V store
- Multiple data centers
- JHipster Gateway
- Netflix Zuul
- Hystrix
- JHipster Console
- Elasticsearch
- Logstash
- Kibana
- Zipkin
- Prometheus
- JHipster UAA server
- Summary
- Building Microservices with JHipster
- Application architecture
- Gateway application generation
- Converting a monolithic application to a microservice gateway
- Application generation
- Generating a new Gateway
- Gateway configuration
- JWT authentication
- How JWT works
- Microservice application - Invoice Service with MySQL database
- Application generation
- Microservice configuration
- Microservice application - notification service with NoSQL database
- Application generation
- Microservice configuration
- Summary
- Working with Microservices
- Setting up JHipster Registry locally
- Using a pre-packaged WAR file
- Building from source
- Docker mode
- Running a generated application locally
- Gateway application pages
- JHipster Registry pages
- System status
- Below renew threshold
- Instances registered
- General info and health
- Application listing page
- Metrics page
- Health page
- Configuration page
- Logs page
- Swagger API endpoints
- Running invoice and notification applications locally
- Modeling entities in JDL
- Entity generation on microservices
- Explaining the generated code
- Gateway application
- Explaining the generated pages
- Summary
- Deploying with Docker Compose
- Introducing microservice deployment options
- A short introduction to Docker Compose
- Kickstarting Kubernetes
- Introducing OpenShift
- Explaining Rancher
- Generated Docker Compose files
- Walking through the generated files
- Building and deploying everything to Docker locally
- Generating docker-compose files for microservices
- Features of the deployed application
- JHipster console demo
- Scaling up with Docker Swarm
- Summary
- Deploying to the Cloud with Kubernetes
- Generating Kubernetes configuration files with JHipster
- Walking through the generated files
- Deploying the application to Google Cloud with Kubernetes
- Summary
- Using React for the Client-Side
- Generating an application with React client side
- Technical stack and source code
- Technical stacks
- Using TypeScript
- State management with Redux and friends
- Routing with React Router
- HTTP requests using Axios
- Bootstrap components using Reactstrap
- Unit testing setup
- Generating source code
- Generating an entity with React client side
- Summary
- Best Practices with JHipster
- The next steps to pursue
- Adding a shopping cart for the application
- Improving end-to-end tests
- Improving the CI/CD pipeline
- Building a JHipster module
- Best practices to keep in mind
- Choosing a client-side framework
- Choosing a database option
- Architecture considerations
- Security considerations
- Deployment and maintenance
- General best practices
- Using JHipster modules
- Contributing to JHipster
- Summary
- Other Books You May Enjoy
- Leave a review - let other readers know what you think 更新時(shí)間:2021-08-27 19:58:30
推薦閱讀
- Kali Linux Web Penetration Testing Cookbook
- Arduino by Example
- Mastering Selenium WebDriver
- 區(qū)塊鏈架構(gòu)與實(shí)現(xiàn):Cosmos詳解
- Java從入門到精通(第5版)
- C語(yǔ)言程序設(shè)計(jì)
- 區(qū)塊鏈技術(shù)與應(yīng)用
- 51單片機(jī)C語(yǔ)言開(kāi)發(fā)教程
- Learning Node.js for .NET Developers
- QGIS 2 Cookbook
- Learning iOS Security
- Ext JS 4 Plugin and Extension Development
- Java EE互聯(lián)網(wǎng)輕量級(jí)框架整合開(kāi)發(fā):SSM+Redis+Spring微服務(wù)(上下冊(cè))
- 交互設(shè)計(jì)語(yǔ)言:與萬(wàn)物對(duì)話的藝術(shù)(全兩冊(cè))
- 網(wǎng)絡(luò)工程方案設(shè)計(jì)與實(shí)施(第二版)
- Mastering Assembly Programming
- Mastering Android Application Development
- Activiti權(quán)威指南
- Learning Puppet Security
- 思維黑客:讓大腦重裝升級(jí)的75個(gè)超頻用腦法
- Balsamiq Wireframes Quickstart Guide
- 計(jì)算機(jī)網(wǎng)絡(luò)概論(第二版)
- jQuery 2.0 Development Cookbook
- Vue.js 3移動(dòng)應(yīng)用開(kāi)發(fā)實(shí)戰(zhàn)
- OCA Oracle Database 11g:SQL Fundamentals I:A Real World Certification Guide
- HTML5從入門到項(xiàng)目實(shí)踐(超值版)
- Java程序設(shè)計(jì)教程(第2版)
- 大模型應(yīng)用開(kāi)發(fā)極簡(jiǎn)入門:基于GPT-4和ChatGPT(第2版)
- Python編程從小白到大牛
- Android移動(dòng)開(kāi)發(fā)項(xiàng)目式教程(第2版)