GitHub is a popular code hosting platform. Developers can use the platform's version control function to manage code, collaborate on writing documents and code, etc. However, some developers found that when submitting jsp files, the newly added jsp files were not displayed on GitHub. This is because jsp files are generally compiled before they can be run on the server, and Git only recognizes text files. Therefore, when submitting a jsp file, specific operations must be taken to correctly display the jsp file on GitHub.
1. Use .gitignore files to ignore compiled files
In the development process using jsp files, we usually use IDE tools to generate the class files of the jsp page. If .jsp and .class files are submitted to GitHub together, the code repository on GitHub will be very bloated, which is not conducive to version control. Generally speaking, this problem can be solved by ignoring the .class file in the .gitignore file. Copy the following content to the .gitignore file:
*.class
2. Use Markdown files and folders to simulate directories
If you do not want to submit .class files in the project, but you need To conveniently view the structure and directory of jsp files, you can use Markdown language to write the directory structure and organize all jsp files and directories into a single file. You can create a new README.md file on GitHub and add tables of contents and links to individual jsp files in Markdown format.
Please note that in this case, any text related to the jsp file must be submitted in text format, which means that you cannot add any binary files or embedded images in it.
In addition to using Markdown files to simulate directories, you can also create empty directories and add them to the code repository on GitHub. Folder directories added using this method can be displayed in the Git client.
3. Convert JSP files into HTML files
If you choose to convert jsp files into html, you can compile the JSP files into HTML files before submitting them for submission to on GitHub.
The most popular JSP engine currently is Apache Tomcat, which has a very simple tool for converting JSP files into HTML files. Tomcat provides a JSP page management tool. You can visit http://localhost:8080/manager/html, enter the page, select the JSP file you want to convert to an HTML file, and then select "Convert to HTML". Tomcat will automatically generate an HTML version of the JSP page and store it in the Tomcat server directory. Adding this newly generated HTML file to GitHub can solve the problem of jsp files not being displayed on GitHub.
Summary
Through the above three methods, we can easily display jsp files on GitHub and select the corresponding method to match their respective needs. Whether by ignoring JSP class files, manually processing directory tags and links, or converting JSP files into HTML files, you can solve the problem of not being able to display jsp files on GitHub.
The above is the detailed content of What should I do if github does not display the newly added jsp files?. For more information, please follow other related articles on the PHP Chinese website!

This article provides a guide to Git management, covering GUI tools (Sourcetree, GitKraken, etc.), essential commands (git init, git clone, git add, git commit, etc.), branch management best practices (feature branches, pull requests), and merge con

This article addresses common Git commit failures. It details troubleshooting steps for issues like untracked files, unstaged changes, merge conflicts, and pre-commit hooks. Solutions and preventative measures are provided to ensure smoother Git wo

This article details methods for viewing Git commit content. It focuses on using git show to display commit messages, author info, and changes (diffs), git log -p for multiple commits' diffs, and cautions against directly checking out commits. Alt

This article explains the difference between Git's commit and push commands. git commit saves changes locally, while git push uploads these committed changes to a remote repository. The article highlights the importance of understanding this distin

This guide explains how to push a single Git commit to a remote branch. It details using a temporary branch to isolate the commit, pushing this branch to the remote, and then optionally deleting the temporary branch. This method avoids conflicts and

This article explains the distinct roles of git add and git commit in Git. git add stages changes, preparing them for inclusion in the next commit, while git commit saves the staged changes to the repository's history. This two-step process enables

This article introduces Git, a distributed version control system. It highlights Git's advantages over centralized systems, such as offline capabilities and efficient branching/merging for enhanced collaboration. The article also details learning r

This beginner's guide introduces Git, a version control system. It covers basic commands (init, add, commit, status, log, branch, checkout, merge, push, pull) and resolving merge conflicts. Best practices for efficient Git use, including clear comm


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Notepad++7.3.1
Easy-to-use and free code editor
