Lithor
Lithor
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
Ah, i see well the problem is i don't see the dependecy that tries to use javax :/
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
yeah i'm trying to use jakarta but it keeps saying i have to use jakarta instead of javax i didnt use javax in my project?
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
No description
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
Dashboard.jsp is like this
18 replies
JCHJava Community | Help. Code. Learn.
Created by Lithor on 11/27/2024 in #java-help
New to JSP and Servlet - Struggling with database
my pom.xml is like this
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>Nori</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>Nori Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.29</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
<version>4.0.0</version>
</dependency>

</dependencies>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.example</groupId>
<artifactId>Nori</artifactId>
<packaging>war</packaging>
<version>1.0-SNAPSHOT</version>
<name>Nori Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.29</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp</groupId>
<artifactId>jakarta.servlet.jsp-api</artifactId>
<version>3.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.1</version>
</dependency>
<dependency>
<groupId>jakarta.el</groupId>
<artifactId>jakarta.el-api</artifactId>
<version>4.0.0</version>
</dependency>

</dependencies>
18 replies