我想将bootstrap css文件添加到我的spring项目中。
这是应该包含bootstrap css文件的jsp文件。
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<html>
<head>
<title>Login</title>
</head>
<body>
<h2>Login With Database Application</h2>
<form:form method="post" action="login" modelAttribute="loginuser">
<table>
<tr>
<td>Login ID</td>
<td><input type="text" name="loginid" id="loginid" path="loginid" /></td>
</tr>
<tr>
<td>Password</td>
<td><input type="password" name="password" id="password" path="password" /></td>
</tr>
</table>
<button class="btn btn-primary"type="submit">Login</button>
<a href="newuser">New User</a>
</form:form>
</body>
这是xml配置文件。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd">
<context:component-scan base-package="com.epic.logindb.controller"></context:component-scan>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
</bean>
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="url" value="jdbc:mysql://localhost:3306/users" />
<property name="username" value="root" />
<property name="password" value="" />
</bean>
<bean id="userlogin" class="com.epic.logindb.dao.UserLogin"></bean>
<bean id="loginuser" class="com.epic.logindb.model.LoginUser"></bean>
<bean id="user" class="com.epic.logindb.model.User"></bean>
<bean id="edituser" class="com.epic.logindb.model.User"></bean>
</beans>
请帮助您将bootstrap文件集成到此jsp文件中。
答案 0 :(得分:1)
在Spring MVC应用程序中,所有请求都由DispatcherServlet
处理,您必须配置资源处理程序来处理任何静态资源,如Javascript文件或CSS文件。
由于您已在spring config xml文件中包含MVC名称空间,因此可以使用以下标记:
<mvc:resources mapping="/resources/**" location="path/resources/" />
您在这里做的是将所有请求映射到URI中的resources
,以便在名为resources的文件夹中提供静态文件。
要在JSP中链接CSS,您可以使用JSTL Tag:
<link rel="stylesheet" href='<c:url value="/resources/bootstrap/bootstrap.min.css" />' />
或者没有JSTL,但请确保您的webapp上下文正确无误:
<link rel="stylesheet" href="/basecontext/resources/bootstrap/bootstrap.min.css" />