I'm new to java. And now I'm doing Struts2 project. I added stylesheet in this path
/WEB-INF/common/css/style.css
and added bootstrap in this path
/WEB-INF/common/css/bootstrap/bootstrap.min.css
and included them in JSP file as
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<link href="/WEB-INF/common/css/bootstrap/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="/WEB-INF/common/css/style.css" rel="stylesheet" type="text/css">
<title>Login</title>
But css doesn't work when I run the program. What do I need to do in Struts2 to include CSS files?