我正在尝试设置一个使用Spring JDBC模板的Spring MVC应用程序。我只有一个问题,Spring似乎没有为NamedParameterJdbcTemplate提取我的bean配置。
的web.xml:
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
version="2.4"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>
WEB-INF/desk-servlet.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<display-name>Desk</display-name>
<servlet>
<servlet-name>desk</servlet-name>
<servlet-class> org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>desk</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
逐servlet.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.0.xsd
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="net.sourceforge.jtds.jdbc.Driver"/>
<property name="url" value="jdbc:jtds:sqlserver://localhost:1433/desk_db;instance=SQLEXPRESS"/>
<property name="username" value="user"/>
<property name="password" value="pass"/>
</bean>
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate">
<constructor-arg ref="dataSource"/>
</bean>
<mvc:resources mapping="/resources/**" location="/resources/"/>
<context:component-scan base-package="com.myapplication.desk.mvc, com.myapplication.desk.persistence, com.myapplication.desk.service"/>
<context:annotation-config/>
<mvc:annotation-driven/>
</beans>
在我的代码中,我实现了一个DAO类来处理我的应用程序的数据库层,它连接bean就像这样:
@Autowired
private NamedParameterJdbcTemplate jdbcTemplate;
当我使用&#34; gradlew - bootRun&#34;测试我的应用程序时我得到了这个例外:
Caused by: org.springframework.beans.factory.NoSuchBeanDefinitionException:
No qualifying bean of type [org.springframework.jdbc.core.namedparam.NamedParameterJdbcTemplate]
found for dependency: expected at least 1 bean which qualifies as autowire
candidate for this dependency. Dependency annotations:
{@org.springframework.beans.factory.annotation.Autowired(required=true)}
我已经完成了所有其他配置注释,这似乎很好。所以我有两个问题:
非常感谢任何提示!非常感谢您花时间阅读本文。
答案 0 :(得分:2)
解决您的问题
1和2非常自我解释。
在application.properties
中创建一个包含数据源设置的src\main\resources
文件。有关更多属性,请参阅this section in the reference guide和properties列表。
spring.datasource.url=jdbc:jtds:sqlserver://localhost:1433/desk_db;instance=SQLEXPRESS
spring.datasource.username=user
spring.datasource.password=pass
创建一个可运行的类来引导您的应用程序。
package com.myapplication.desk;
@Configuration
@EnableAutoConfiguration
@ComponentScan
public static MyApplication {
public static void main(String[] args) {
SpringApplication.run(MyApplication.class, args);
}
}
现在,只需运行此类即可引导应用程序或使用gradlew -bootRun
。我更喜欢这个课程。
Spring Boot将根据它在类路径中检测到的内容来设置JdbcTemplate
和NamedParameterJdbcTemplate
。它还将负责公开/resources
,以便在网上提供这些内容。这是因为添加了@EnableAutoConfiguration
。
我强烈建议阅读Spring Boot Reference Guide并查看the samples