为什么我显示不了图书分类

为什么我显示不了图书分类

package com.imooc.web.servlet;


import java.io.IOException;

import java.util.ArrayList;

import java.util.List;


import javax.servlet.ServletContext;

import javax.servlet.ServletException;

import javax.servlet.annotation.WebServlet;

import javax.servlet.http.HttpServlet;

import javax.servlet.http.HttpServletRequest;

import javax.servlet.http.HttpServletResponse;


import com.imooc.user.Category;


/**

 * Servlet implementation class CategoryServlet

 */

@WebServlet("/category")

public class CategoryServlet extends HttpServlet {

private static final long serialVersionUID = 1L;


/**

* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)

*/

protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

ServletContext context = request.getServletContext();

List clist = new ArrayList();

clist.add(new Category("ca001","计算机类"));

context.setAttribute("clist", clist);

request.getRequestDispatcher("/category.jsp").forward(request, response);

}


/**

* @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)

*/

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

// TODO Auto-generated method stub

doGet(request, response);

}


}

<%@ page language="java" contentType="text/html; charset=UTF-8"

    pageEncoding="UTF-8"%>

 <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>

<!DOCTYPE html>

<html>

    <head>

        <meta charset="UTF-8">

        <title>图书后台管理</title>

        <link rel="stylesheet" href="css/index.css">

        <link rel="stylesheet" href="css/bootstrap.min.css">

    </head>


    <body>

       <header>

            <div class="container">

                    <nav>

                            <a href="bookList.html" >图书信息管理</a>

                    </nav>

                    <nav>

                            <a href="category.jsp" >分类管理</a>

                    </nav>

                   

            </div>

        </header>

        <section class="banner">

            <div class="container">

                <div>

                    <h1>图书管理系统</h1>

                    <p>图书分类管理</p>

                </div>

            </div>

        </section>

        <section class="main">

            <div class="container">

                <table class="table table-striped">

                    <thead>

                    <tr>

                        <th>序号</th>

                        <th>分类编号</th>

                        <th>分类名称</th>

                        <th>操作</th>

                    </tr>

                    </thead>

                    <tbody>

                        <c:forEach items="${applicationScope.clist }" var="cate" varStatus="idx">

                            <tr>

                                <td>${idx.index+1 }</td>

                                <td>${cate.cid }</td>

                                <td>${cate.cname }</td>

                                <td><a href="/deleteCategory?categoryId=ca0001">删除</a></td>

                                <!--在循环显示数据时,此处的ca0001可以用EL表达式进行替换-->


                            </tr>

                        </c:forEach>

                    </tbody>

                </table>

            </div>

        </section>

        <section class="page">

            <div class="container">

                <div id="fatie">

                    <a href="addCategory.html"><button>新建</button></a>

                </div>

            </div>

        </section>

        <footer>

            copy@慕课网

        </footer>

    </body>

</html>


正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

2回答
好帮手慕小尤 2020-02-26 14:54:46

同学你好,请问同学在跳转到图书分类前是否有为集合添加数据,如果没有添加数据,是无法展示图书分类信息,建议同学先创建数据,再展示。如果还是无法展示,建议同学反馈一下登陆代码,方便老师寻找问题。

如果我的回答解决了你的疑惑,请采纳,祝学习愉快~

好帮手慕小尤 2020-02-26 11:19:40

同学你好,请问同学是否是直接访问的jsp文件,如果是,则建议同学访问CategoryServlet文件。如:http://localhost:8080/项目名/category

如果我的回答解决了你的疑惑,请采纳,祝学习愉快~

  • 提问者 慕田峪209283 #1
    老师我是从登录页面跳过去,然后再图书分类那里显示不了图书分类信息
    2020-02-26 11:30:03
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师