首页 > 其他分享 >MVCjsp,jstl整体项目实现依赖

MVCjsp,jstl整体项目实现依赖

时间:2023-11-21 21:05:01浏览次数:33  
标签:MVCjsp 依赖 WholeTest jstl io mysql

<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>com</groupId>
  <artifactId>WholeTest</artifactId>
  <packaging>war</packaging>
  <version>1.0-SNAPSHOT</version>
  <name>WholeTest Maven Webapp</name>
  <url>http://maven.apache.org</url>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
//由于在.settings 文件中设置了编译器版本,这里没加入依赖,tomcat利用本地,未添加依赖
<dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> <version>3.1.0</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.6</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>3.5.5</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.46</version> </dependency> <dependency> <groupId>jstl</groupId> <artifactId>jstl</artifactId> <version>1.2</version> </dependency> <dependency> <groupId>taglibs</groupId> <artifactId>standard</artifactId> <version>1.1.2</version> </dependency> </dependencies> <build> <finalName>WholeTest</finalName> </build> </project>

 

标签:MVCjsp,依赖,WholeTest,jstl,io,mysql
From: https://www.cnblogs.com/uninan/p/17847563.html

相关文章

  • Angular 依赖注入系统里 Injection token PLATFORM_ID 的使用场景
    Angular的依赖注入系统是它的核心特性之一,它使得我们可以轻松地在应用程序的各个部分共享和管理代码。在Angular的依赖注入系统中,InjectionToken是一个特别重要的概念。InjectionToken是一个用于参数类型的标记类,它可以用来在依赖注入器中注入特定的值。在这里,我们将重点讨论......
  • Spring_2023_11_20_2 -DI 依赖注入=》构造方式的形式
    DI依赖注入=》构造方式的形式构造方法的注入,使用实体类对象进行注入Student类集合的注入(数组、List、Set、Map)<!--<bean/>等同于newStudent()通过构造方法的形式进行依赖注入constructor-arg:构造方法参数的注入标签1.index:下表,构......
  • pnpm 管理依赖包是如何节省磁盘空间的?
    npm存在的问题我们经常使用npm来管理node项目中的包,从package.json中读取配置将依赖下载到本地,以保障项目的正常运行。当项目数量多时,这样的包管理方式会非常的占用电脑内存。由于每个项目都有属于自己的依赖,每个项目都需要安装,即使npm会对依赖进行缓存,但是每个项目仍......
  • spring boot maven 手动打入外部jar包依赖
    springboot引入外部jar包并打包jar包springboot,maven依赖引用失败,手动将jar包导入maven本地仓库 https://blog.csdn.net/From_C/article/details/134065518 https://blog.csdn.net/qq_38227017/article/details/131710710https://www.cnblogs.com/xingmangdieyi110/p/1389......
  • WPF-----Microsoft.Extensions 探索 / 依赖注入(DI)
    1 对于IOC的具体介绍  Microsoft.Extensions探索/依赖注入(DI)-知乎(zhihu.com) 使用DI容器需要熟悉下面的接口与类型,Microsoft.Extensions.DependencyInjection.IServiceCollection,该接口包含了一系列Add扩展方法来添加你的服务,该接口的默认实现为Microsoft.Exte......
  • 记录一次 maven 子模块相互依赖导致的父模块无法动态升级的问题 'parent.relativePath
        项目里面使用的commons公共模块,每次更改后之前都不会升级其版本号,导致当commons改动后,其他服务在不知道的情况下,会出现文件缺失。由于之前commons下面有12个公共子模块,所以之前一直没有升级commons模块。为了方便,于是决定每次更改commons模块后让所有的子项目都跟着升......
  • 项目循环依赖解决
    问题:项目启动时报出错误信息,Thedependenciesofsomeofthebeansintheapplicationcontextformacycle:┌─────┐````|intermediateServicedefinedinfile[E:\projects\business-server\target\classes\com\hyit\business\server\Intermediate\IntermediateSe......
  • Spring的各jar包依赖及作用详解
    基于Spring5.0.2.RELEASEspring-core.jar(必须有的核心jar包)这个jar文件包含Spring框架基本的核心工具类。Spring其它组件要都要使用到这个包里的类,是其它组件的基本核心,当然你也可以在自己的应用系统中使用这些工具类。<dependencies><dependency><groupId......
  • OS-Linux-程序安装与依赖
    OS-Linux-程序安装与依赖从源下载安装包sudoaptdownloadmysql查看安装依赖:apt-cacheapt-cachedependsxxx查看已安装程序依赖,如nginxsudoapt-getinstall--reinstall-d'apt-cachedependsnginxIgrep"依赖”lcut-d:-f2Itr-d“"......
  • 上传到oss下载SDk(引入SDK依赖)
    登陆阿里云在左侧下方有SDK下载选择查看上侧文档,文档中心中选择语言下载 ......