我发现了很多这样的相关问题,但我仍然无法使其发挥作用。 这是我的网络应用程序的pom.xml
<profiles>
<profile>
<id>mysql</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<dialect>org.hibernate.dialect.MySQLDialect</dialect>
<driver>com.mysql.jdbc.Driver</driver>
<url>jdbc:mysql://localhost/exercisedb</url>
<username>root</username>
<password>password</password>
</properties>
</profile>
</profiles>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.4</version>
<configuration>
<webResources>
<resource>
<filtering>true</filtering>
<directory>src/main/webapp/WEB-INF</directory>
<targetPath>WEB-INF</targetPath>
</resource>
</webResources>
</configuration>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
这是我试图在我的applicationContext中过滤的bean,它位于src / main / webapp / WEB-INF / spring / appServlet文件夹中
<bean id="dataSource" class="org.apache.commons.dbcp2.BasicDataSource" destroy-method="close">
<property name="driverClassName" value="${driver}"/>
<property name="url" value="${url}"/>
<property name="username" value="${username}"/>
<property name="password" value="${password}"/>
</bean>
我运行应用程序,我收到此错误
Cannot load JDBC driver class '${driver}'
java.lang.ClassNotFoundException: ${driver}
我假设在构建时没有过滤属性。
编辑:webapp pom.xml
<webResources>
<resource>
<filtering>true</filtering>
<directory>src/main/webapp/WEB-INF/spring/appServlet</directory>
<targetPath>WEB-INF/spring/appServlet</targetPath>
<includes>
<include>applicationContext.xml</include>
</includes>
</resource>
</webResources>
现在已过滤但使用mvn jetty:run,同样的错误 我尝试部署到tomcat(不是maven中的插件)并且它可以工作。
答案 0 :(得分:1)
这是jetty-maven-plugin
问题,而不是maven-war-plugin
。
如https://www.eclipse.org/jetty/documentation/current/jetty-maven-plugin.html#jetty-run-goal中所述,
带有占位符$ {driver}的源文件夹上的码头:运行
运行目标在不必内置到WAR中的webapp上运行。相反,Jetty从其源代码部署webapp。它在Maven默认项目位置中查找webapp的组成部分,但您可以在插件配置中覆盖这些部分。例如,默认情况下它会查找:
$ {project.basedir} / src / main / webapp
中的资源
jetty-maven-plugin looks
,而不是带有值为com.mysql.jdbc.Driver的目标文件夹
您可以将Spring配置XML从webResources移动到资源并通过classpath
访问它