- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试使用登录 jsp 登录时,它不会检查 mysql 数据库。有什么建议吗?
我的登录Jsp ------------->
JSP
<table border="0" cellpadding="0" cellspacing="0" width=0% style="font-size: 8pt;">
<%if (session.getAttribute("userName")==null) {%>
<form method="post" action="/web/login.do">
<input type="hidden" name="option" value="login">
<tr>
<td>Login:</td>
<td><input name="u_id" type="text" id="u_id" size="20"></td>
</tr>
<tr>
<td>Password:</td>
<td><input name="u_pw" type="password" id="u_pw" size="20">
</td>
</tr>
<tr>
<td></td>
<td>
<a href="/web/index.jsp">Home</a> |
<a href="/web/register.jsp">Register</a> |
<input type="submit" value="Log In">
</td>
</tr>
</form>
<%}
else {
String username=session.getAttribute("username").toString();%>
<tr><td>Login: <b><%=userName%></b></td></tr>
<tr><td>
<a href="/web/index.jsp">Home</a> |
<a href="/web/cart/cart.jsp">Cart</a> |
<% if (session.getAttribute("login").toString() {%>
<a href="/web/index.jsp">Admin Portal</a>
<% }
|
<a href="/web/log.do?option=logout">Logout</a>
</td></tr>
<%}%>
</table>
</div>
我的 WEB XML ----------------------->
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<servlet>
<servlet-name>LoginLogout</servlet-name>
<servlet-class>LoginLogoutServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>LoginLogout</servlet-name>
<url-pattern>/login.do</url-pattern>
</servlet-mapping>
</web-app>
My Context XML -------------->
Context docBase="web" path="/web" workDir="work\Catalina\localhost\web"
Resource name="jdbc/myDB" type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver" password="" maxIdle="2" maxWait="5000" username="root" url="jdbc:mysql://localhost:3306/mydb?autoReconnect=true" maxActive="4"/
</Context>
My LoginLogout Servlet --------------------->
Java
import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;
import java.util.*;
public class LoginLogoutServlet extends HttpServlet {
/**
*This method handles the request passed in from the interface using POST method.
*/
public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException {
login(req,res);
}
/**
*This method handles the request passed in from the interface using GET method.
*/
public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException {
doPost(req,res);
}
/**
*This method handles the login and logout of User.
*/
public void login(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
response.setContentType("text/html");
PrintWriter out = response.getWriter();
ArrayList ex = new ArrayList();
String option = request.getParameter("option");
String uid = null;
String pw = null;
if(option.equalsIgnoreCase("login")){
uid = request.getParameter("u_id");
pw = request.getParameter("u_pw");
UserDAO user = null;
ArrayList userDB = null;
try {
user = new UserDAO();
userDB = user.retrieve();
}catch(Exception e){
ex.add(e);
}
boolean ufound = false;
HttpSession session = request.getSession();
if(ex.size()==0 && !uid.equals("") && !pw.equals("") ){
//checks for staff in the database
for(int i = 0; i < userDB.size(); i++){
User s = (User)userDB.get(i);
String login = s.getUserName();
String password = s.getPassword();
if((uid.trim().equalsIgnoreCase(login)) && (pw.trim().equalsIgnoreCase(password))){
ufound = true;
session.setAttribute("userName",uid);
}
}
/*//checks for User in the database
for(int i = 0; i < userDB.size(); i++){
User c = (User)userDB.get(i);
String email = c.getEmailAddr();
String password = c.getPasswd();
if((uid.equalsIgnoreCase(email)) && (pw.equalsIgnoreCase(password))){
ufound = true;
session.setAttribute("userName",uid);
session.setAttribute("login","customer");
session.setAttribute("customerObj",c);
//assign shopping cart to customer
session.setAttribute("ShoppingCart", new ArrayList());
//checks which page did the customer login from
if(request.getRequestURI().equals("main.html")){
//display main page
//RequestDispatcher rd = request.getRequestDispatcher("main.html");
}else{
//RequestDispatcher rd = request.getRequestDispatcher("shoppingcart.html");
}
}
}*/
}else{
ex.add(new Exception("Please complete all fields!"));
}
if(!ufound){
ex.add(new Exception("No such User found!"));
request.setAttribute("userName","notFound");
request.setAttribute("login","notFound");
}if(ufound){
session.setAttribute("login","User");
}
try {
user.close();
}catch(Exception e){
ex.add(e);
}
}else if(option.equalsIgnoreCase("logout")){
HttpSession session = request.getSession();
String login=(String) session.getAttribute("login");
if(login.equals("User")){
session.removeAttribute("userName");
//request.setAttribute("Remove","removedStaff");
}else if(login.equals("customer")){
session.removeAttribute("userName");
session.removeAttribute("cart");
//request.setAttribute("Remove","removedCust");
}
session.invalidate();
}
//assign request attributes for jsp output
request.setAttribute("option",option);
request.setAttribute("exceptions",ex);
RequestDispatcher view=null;
response.sendRedirect("/web");
out.close();
}
}
用户 DAO。
import java.sql.*;
import javax.sql.DataSource;
import javax.naming.*;
import java.util.*;
/**
*This class allows eStoreServlet to communicate with the database, myDB, through connection pooling.
*This class handles the CRUD operations of the Users entity.
*/
public class UserDAO{
private DataSource ds;
private Connection con;
/**
*Constructor gets a connection from connection pool.
*/
public UserDAO() throws Exception{
try {
Context ctx = new InitialContext();
if(ctx == null )
throw new Exception("Can't create initial context");
if(ds == null)
ds = (DataSource) ctx.lookup(eSpaceStatic.daoDS_name);
con = ds.getConnection();
} catch (NamingException e){
e.printStackTrace();
throw new Exception(e+": User"+eSpaceStatic.daoEM_cp);
}
}
/**
*Method to add a User to the database.
*@param c This is the User object.
*@return Returns an int, if -1, means User is not added to the database. Otherwise, the id of the User will be returned.
*/
public int add(User c) throws Exception{
int result = 0;
try{
PreparedStatement stmt = con.prepareStatement("insert into User(name, username, password) values(?,?,?)");
stmt.setString(1, c.getName());
stmt.setString(2, c.getUserName());
stmt.setString(3, c.getPassword());
int rownum = stmt.executeUpdate();
if(rownum == 0){
result = -1;
}else{
ResultSet rs = stmt.getGeneratedKeys();
if(rs.next()){
result = rs.getInt(1);
}
}
stmt.close();
}catch(SQLException se){
throw new SQLException(se+": Item"+eSpaceStatic.daoEM_add);
}
return result;
}
/**
*Method to retrieve all User from the database.
*@return Returns an arraylist which contains all the User objects.
*/
public ArrayList retrieve() throws Exception {
ArrayList cl = null;
try{
cl = new ArrayList();
Statement st = con.createStatement();
ResultSet rs = st.executeQuery("Select * from User");
if(rs!=null){
while(rs.next()){
User c = new User();
c.setUserId(rs.getInt("userId"));
c.setName(rs.getString("name"));
c.setUsername(rs.getString("username"));
c.setPassword(rs.getString("password"));
cl.add(c);
}
}
st.close();
}
catch(SQLException se){
System.out.println(se+": User"+eSpaceStatic.daoEM_rtr);
}
return cl;
}
/**
*Method to retrieve a User from the database.
*@param userId This is the User Id.
*@return Returns a User object.
*/
public User retrieve(int userId) throws Exception {
User ret = null;
try{
Statement st = con.createStatement();
ResultSet rs = st.executeQuery("Select * from User where userId = "+userId);
if(rs!=null){
while(rs.next()){
User c = new User();
c.setUserId(rs.getInt("userId"));
c.setName(rs.getString("name"));
c.setUsername(rs.getString("username"));
c.setPassword(rs.getString("password"));
}
}
st.close();
rs.close();
}
catch(SQLException se){
throw new Exception(se+": "+eSpaceStatic.daoEM_cp);
}
return ret;
}
/**
*Method to update a User in the database.
*@param c This is the User object.
*@param userId This is the User id.
*@return Returns a boolean. If true, User is updated. If false, User is not updated.
*/
public boolean update(User c, int userId) throws Exception {
boolean updated = false;
try{
PreparedStatement pstmt = con.prepareStatement("update User set (name = ?, username = ?, password = ?) where userId = ?");
pstmt.setString(1, c.getName());
pstmt.setString(2, c.getUserName());
pstmt.setString(3, c.getPassword());
pstmt.setInt(4, userId);
int rownum = pstmt.executeUpdate();
updated = rownum!=0;
pstmt.close();
}catch(SQLException se){
System.out.println(se+": User"+eSpaceStatic.daoEM_rtr);
}
return updated;
}
/**
*Method to delete a User in the database.
*@param userId This is the User Id.
*@return Returns a boolean. If true, User is deleted. If false, User is not deleted.
*/
public boolean delete(int userId) throws Exception {
boolean deleted=false;
try {
PreparedStatement ps=con.prepareStatement("delete from User where userId= ?");
ps.setInt(1,userId);
ps.executeUpdate();
deleted=true;
}
catch (SQLException se) {
System.out.println(se+": User"+eSpaceStatic.daoEM_del);
}
return deleted;
}
/**
*Method to close connection.
*/
public void close() throws SQLException{
con.close();
}
}
eSpaceStatic类
public class eSpaceStatic {
public static String daoDS_name="java:comp/env/jdbc/myDB";
public static String daoEM_cp="Could not look up connection pool.";
public static String daoEM_rtr=" could not be retrieved.";
public static String daoEM_add=" could not be added.";
public static String daoEM_del=" could not be deleted.";
public static String daoEM_cnf=" could not be found.";
}
最佳答案
编辑:我应该从一开始就问这个:
When i try to login using my login jsp it doesn't check with mysql database
你怎么知道你的代码“没有检查mysql数据库”
Any advice?
是的。
关于java - 无法使用JSP和TOMCAT 7连接MYSQL数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5336709/
是否可以让标准 Java EE servlet 容器将文件解释并呈现为 JSP,即使该文件没有 .jsp 扩展名? 假设我的 WAR 根目录中有一个名为 foo.xyz 的文件。该文件包含一些 jST
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我有几个通用元素(组件),它们会生成一些 html。似乎我的选择是创建一个 taglib,或者只是将该逻辑放入一个 jsp 页面并包含 jsp。 有什么不同?积极与消极? 最佳答案 Taglibs 允
我是 Ejb-JSP 的新手,对它知之甚少。我已经创建了一个 JSP 页面,它调用 Controller Servlet,而 servlet 调用 EJB。结构就像 JSP -> Servlet ->
我想编写一个自定义 JSP 标签,其输出包括其他 JSP 标签,这些标签本身也应该被动态评估。但显然我的一切TagSupport子类写入 pageContext.getOut()无需任何进一步评估,直
我有一个包含页面顶部内容的 JSP,我们称它为 header.jsp。出于性能原因,我想呈现此 JSP 并将其刷新给用户,然后再构建页面的其余部分。 (有关性能优势的解释,请参阅 here。) 我能想
我发现自己在处理一些旧的 JSP,想做一些简单的事情,比如以 dd/mm/yyyy 格式显示今天的日期 好像没那么简单, 到目前为止,我已经导入了 java.util.* 我试过很多东西 String
关于 JSP 标签字符集的简单问题。 mytag很简单。 tag文件位于 WEB-INF/tags .这个文件在 Eclipse 中的字符集是 UTF-8。出于某种原因,UTF-8 符号无法
这让我很吃惊!我的 JSP 中有以下代码。 在我重构 SlideShow 类并公开所有属性并删除 getter/setter 之前,这段代码一直有效。所以在我看来,EL 只适用于 getter 而不
现有的一组 JSP,用英文字段标签、javascript 错误/信息消息、图像“alt”消息等硬编码,需要多语言化。 将这些 JSP 转换为使用标准 Java 多语言功能(资源包、语言环境等)的最佳方
Closed. This question needs to be more focused。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过editing this post专注于一个问题
我已经在 Tomcat 6.0 下部署了我们的 War 到 Linux 服务器。在那个 Linux 机器上,我们没有打开浏览器的权限。 是否可以从命令行执行 JSP? 最佳答案 您可以使用其中 wge
有没有人建议为 JSP 设置最佳缓冲区大小?您可以使用以下页面指令在 JSP 中设置缓冲区大小 我的问题如下 我的理解是,您使用的缓冲区大小越小,客户端浏览器的性能就越好。我的假设正确吗?如
我们正在使用 JBoss 7.1.3.Final 和 Java 6。我想将 UTF-8 页面编码应用于我们网站上提供的所有 JSP 页面,因此我将其添加到我们的 web.xml 文件中
学过jsp native,想包含动态文件。我想使用 include 调用动态页面 这段代码 如果我输入 dashboard.jsp?p=about 页面打开“pages/a
在我的 JSP 页面中,我希望链接转发到另一个 JSP 页面。当用户在 home.jsp 上时,我希望他们转到 login.jsp 等。我遇到的问题是无法找到 JSP,除非我将页面放在项目文件夹中(在
我正在尝试在新的grails应用程序中使用index.jsp切换index.gsp。我将默认的index.gsp重命名为not_index.gsp,并添加了index.jsp。现在,我收到以下错误。
是否可以从服务器端 jsf 代码将资源打开到新的浏览器选项卡(如命令按钮的 target="_newtab")? 以下代码在同一选项卡中打开资源: FacesContext.getCurrentIns
我想问一个关于 .jsp 的问题。使用 jsp 语法(例如 )和 XML 语法(例如 ... )有什么不同。使用其中一种语法是否有维护或某种 advs?谢谢。 最佳答案 原始的 语法更加紧凑,但如
JSP 文件是否有行业标准命名约定? 我遇到过来自不同来源的三种约定: 全部小写 (thisismyfile.jsp) 首字母小写的驼峰式大小写 (thisIsMyFile.jsp) 首字母大写的驼峰
我是一名优秀的程序员,十分优秀!