<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd ">
<bean id="oriensb2c"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="username" value="aa" />
<property name="url" value="jdbc:mysql://localhost:3306/aa" />
<property name="password" value="aa" />
</bean>
<bean id="oriensb2b"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="username" value="bb" />
<property name="url" value="jdbc:mysql://localhost:3306/bb" />
<property name="password" value="bb" />
</bean>
<bean id="nstoreb2c"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="username" value="cc" />
<property name="url" value="jdbc:mysql://localhost:3306/cc" />
<property name="password" value="cc" />
</bean>
<bean id="nstoreb2b"
class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver" />
<property name="username" value="dd" />
<property name="url" value="jdbc:mysql://localhost:3306/dd" />
<property name="password" value="dd" />
</bean>
<!-- Definition for JDBCTemplate bean -->
<bean id="jdbcoriensb2c" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="oriensb2c"></property>
</bean>
<bean id="jdbcoriensb2b" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="oriensb2b"></property>
</bean>
<bean id="jdbcnstoreb2c" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="nstoreb2c"></property>
</bean>
<bean id="jdbcnstoreb2b" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="nstoreb2b"></property>
</bean>
<bean id="kuttyJavaController" class="com.service.KuttyJavaController">
<property name="jdbcoriensb2c" ref="jdbcoriensb2c"></property>
<property name="jdbcoriensb2b" ref="jdbcoriensb2b"></property>
<property name="jdbcnstoreb2c" ref="jdbcnstoreb2c"></property>
<property name="jdbcnstoreb2b" ref="jdbcnstoreb2b"></property>
</bean>
</beans>
@Controller
public class KuttyJavaController {
//Oriens B2c
private JdbcTemplate jdbcoriensb2c;
//Oriens B2b
private JdbcTemplate jdbcoriensb2b;
//Nstore B2c
private JdbcTemplate jdbcnstoreb2c;
//Nstore B2b
private JdbcTemplate jdbcnstoreb2b;
public void setJdbcoriensb2c(JdbcTemplate jdbcoriensb2c) {
this.jdbcoriensb2c = jdbcoriensb2c;
}
public void setJdbcoriensb2b(JdbcTemplate jdbcoriensb2b) {
this.jdbcoriensb2b = jdbcoriensb2b;
}
public void setJdbcnstoreb2c(JdbcTemplate jdbcnstoreb2c) {
this.jdbcnstoreb2c = jdbcnstoreb2c;
}
public void setJdbcnstoreb2b(JdbcTemplate jdbcnstoreb2b) {
this.jdbcnstoreb2b = jdbcnstoreb2b;
}
你的豆子的名字不匹配。例如,您定义了以下内容:
<bean id="nstoreb2btemplate" name="nstoreb2btemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="nstoreb2b"></property>
</bean>
但是,您使用以下方式调用它:
//Nstore B2b
private JdbcTemplate jdbcnstoreb2b;
这应该是(当然也是在骆驼的情况下):
//Nstore B2b
private JdbcTemplate nstoreb2btemplate;
我做了一些搜索,但我无法找出是什么问题。我知道这个问题来自于ClassNotFoundException,但我无法解决它。 我把我需要的东西都装上了(嗯,我想)。下面是我的代码: DAO类: 服务类别:
在启动springboot应用程序时出现了一些异常。我不知道我错过了什么。 这里是我的代码:这是入口: 这是控制器: 这是pom.xml 这是日志(对格式抱歉): 问题已经修复,我更新了ContextConfig.class,如下所示:` `
我是新来的,我试图用Spring创建一个电子商店,但我有一个问题,与数据库的连接。我搜索了一下,发现其他用户也问了同样的问题,但我找不到问题所在。我缺乏想法,这里出了什么问题。 } ProductDAO ProductDaoimpl 提前感谢!:)
BeanCreationException:创建名为“Vote Controller”的bean时出错:autowired依赖项的注入失败;嵌套的异常是org.springframework.beans.factory.beanCreationException:不能autowire字段:com.mindtree.service.voteservice com.mindtree.controlle
ContactController.java
我有一个集成了spring框架的maven项目,我使用这个项目为移动应用程序构建web服务。当我在AWS ubuntu服务器上部署该项目时,该项目给出了BeanCreationException并且它在Tomcat7上运行失败。当我在本地环境中运行它时,它工作得很好。下面是Tomcat7的错误日志。 TIA