最新回答 / MrLw
你可以在首页index.jsp中增加一个跳转<%request.getRequestDispatcher("/List.action").forward(request, response); %>这样打开首页的时候就跳过去了
2016-12-27
最新回答 / 慕粉3796571
conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb?useUnicode=true&characterEncoding=UTF-8", "root", "");
2016-12-25
最赞回答 / qq_画个圈圈诅咒你_03164602
我已经解决了。。乱码加上这条。。。conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/mydb?useUnicode=true&characterEncoding=UTF-8", "root", "");这样写中文乱码问题就解决了蠢哭,看了好久。。。
2016-12-23
最新回答 / Bossen
WEB-INF文件夹下面的文件都是不能通过url直接访问的,必须提交给servlet来处理,通过重定向的方式访问。我现在发现老师做的get提交方式有很多bug,我正在调试用post提交,也在头疼中啊。
2016-12-18