首页 > 代码库 > maven创建项目中不能使用EL表达式

maven创建项目中不能使用EL表达式

maven创建项目中不能使用EL表达式

默默的看雨下
问题

问题

今天在跟着慕课网学习Mybatis时,遇到了在maven创建项目中不能使用EL表达式的问题。

解决方法

1.添加maven依赖 主要有standard.jarjstl.jar

        <!-- https://mvnrepository.com/artifact/taglibs/standard -->
        <dependency>
            <groupId>taglibs</groupId>
            <artifactId>standard</artifactId>
            <version>1.1.2</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.2</version>
        </dependency>

2.Web.xml问题
必须为下面格式

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
                      http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
    version="3.0">
    
    
</web-app>

References

http://blog.csdn.net/yuguiyang1990/article/details/10419759
http://www.programgo.com/article/41062042529/

欢迎使用 小书匠(xiaoshujiang)编辑器,您可以通过设置里的修改模板来改变新建文章的内容。

maven创建项目中不能使用EL表达式