我开发了一个基于JAX-WS的Web服务。我有Web服务层,服务层和Dao层。当我从Web服务类调用服务方法时,它会给出空指针异常。原因是服务类bean没有被注入。
网络服务类:
package com.test.webservice.controller;
import javax.jws.WebMethod;
import javax.jws.WebService;
import com.test.salary.service.SalaryService;
@WebService
public class EmployeeSalaryWebService {
private SalaryService salaryService;
/**
* @param salaryService the salaryService to set
*/
@WebMethod(exclude = true)
public void setSalaryService(SalaryService salaryService) {
this.salaryService = salaryService;
}
@WebMethod
public double getEmployeeSalary(String name){
System.out.println("==== Inside getEmployee Salary === "+salaryService );
return salaryService.calculateSalary(name);
}
}
应用上下文
<?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-3.0.xsd">
<bean name="salaryWebService"
class="com.test.webservice.controller.EmployeeSalaryWebService">
<property name="salaryService" ref="salaryService" />
</bean>
<bean name="salaryService" class="com.test.salary.service.SalaryServiceImpl">
<property name="salaryDAO" ref="salaryDAO" />
</bean>
<bean name="salaryDAO" class="com.test.salary.dao.SalaryDaoImpl">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="configLocation" value="classpath:hibernate.cfg.xml" />
</bean>
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close">
<property name="driverClassName" value="oracle.jdbc.driver.OracleDriver" />
<property name="url" value="jdbc:oracle:thin:@localhost:1521:xe" />
<property name="username" value="LOCAL" />
<property name="password" value="abcdef" />
</bean>
</beans>
的web.xml:
<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_2_5.xsd"
version="2.5">
<display-name>Archetype Created Web Application</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/salaryConfiguration.xml</param-value>
</context-param>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
</web-app>
请告诉我为什么 SalaryService salaryService 没有注入。
答案 0 :(得分:2)
您的服务类和bean在上下文中是两个不同的东西。我相信你不会从背景中获取豆子而只是使用课堂,不是吗? 我建议你用
标记你的服务类@Component
这将使你的班级成为春天的豆子。 然后你可以使用里面的注释。
@Autowired
这将尝试在spring上下文中找到带有注释元素类型的适当bean。 并且不要忘记融入你的背景。
<context:component-scan base-package="..." />
这将搜索标记为@Component的所有类,并将其作为bean添加到spring上下文中。 有关更详细的说明,请查看本文 https://www.javacodegeeks.com/2010/11/jaxws-with-spring-and-maven-tutorial.html
答案 1 :(得分:1)
按如下方式自动连接SalaryService:
public class EmployeeSalaryWebService {
@Autowired
private SalaryService salaryService;
....