- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
总结
我正在构建一个 spring-mvc web 应用程序并尝试使用 Mybatis 和 DAO 进行数据访问。
我成功地配置了 Mybatis,并且能够从 Mysql 服务器获取预期的数据。
但是当我尝试在 Mybatis 中使用 DAO 时出现了问题。
错误
正如您在下面看到的,这是一个 NullPointerException
。
INFO : com.*****.web.controller.ExampleController - testDaoSelect action has been executed. No parameter has been taken.
INFO : com.*****.web.service.exampleService - Executed or not??
09, March, 2015 5:07:28 PM org.apache.catalina.core.StandardWrapperValve invoke
Fatal: Servlet.service() for servlet [appServlet] in context with path [] threw exception [Request processing failed; nested exception is java.lang.NullPointerException] with root cause
java.lang.NullPointerException
at com.*****.web.service.exampleService.sampleList(exampleService.java:29)
at com.*****.web.controller.ExampleController.testDaoSelect(ExampleController.java:188)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:483)
at org.springframework.web.method.support.InvocableHandlerMethod.invoke(InvocableHandlerMethod.java:213)
at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:126)
at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:96)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:617)
at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:578)
at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:80)
at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:923)
at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:852)
at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:882)
at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:789)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:644)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:725)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:291)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:52)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:239)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:219)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:106)
at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:501)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:142)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:79)
at org.apache.catalina.valves.AbstractAccessLogValve.invoke(AbstractAccessLogValve.java:610)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:88)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:516)
at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1086)
at org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:659)
at org.apache.coyote.http11.Http11NioProtocol$Http11ConnectionHandler.process(Http11NioProtocol.java:223)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1558)
at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.run(NioEndpoint.java:1515)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)
at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:61)
at java.lang.Thread.run(Thread.java:745)
重现错误
从 AJAX 调用开始。
$('#DaoSelectTest').click(function(e) {
$.ajax({
type: "POST",
url: "/testDaoSelect.fst",
data: {},
success: function (result) {
console.log(result);
var html = "Querying was successful. Check out console logs. <br/>";
html += "Done with the test. <a href='/daoSample.fst'>Click here</a> ";
html += "And proceed to the next.";
$('#sampleTable').html(html);
},
error: function (result) {
// error...
}
});
});
接下来,执行 Action ..
@Controller
public class ExampleController {
// Mybatis direct
@Autowired
private SqlSession sqlSession;
// Dao
@Autowired
private exampleService exService;
.
.
.
.
.
@RequestMapping("/testDaoSelect")
@ResponseBody
public List<HashMap<String, Object>> testDaoSelect(HttpServletRequest request, HttpServletResponse response) {
logger.info("testDaoSelect action has been executed. No parameter has been taken.");
List<HashMap<String, Object>> result = exService.sampleList();
logger.info("result size is... " + result.size());
return result;
}
调用textDaoSelect
就可以了,接下来是Service类。
@Service
@Transactional
public class exampleService {
private Log logger = LogFactory.getLog(this.getClass());
@Autowired
private exampleDao exDao;
@Transactional(readOnly = true)
public List<HashMap<String, Object>> sampleList() {
logger.info("Executed or not??");
return exDao.sampleList();
}
}
砰~!这里
此处exDao为null,此处出现NullPointException
。接线不正确。为什么??我该怎么办??
我的 exampleDao
public interface exampleDao {
public List<HashMap<String, Object>> sampleList();
}
**我的例子DaoImplement
public class exampleDaoImplement extends SqlSessionDaoSupport implements exampleDao {
private static final Logger logger = LoggerFactory.getLogger(exampleDaoImplement.class);
public List<HashMap<String, Object>> sampleList() {
// TODO Auto-generated method stub
logger.info("I've reached impl class....");
return getSqlSession().selectList("Example.selectTest");
}
}
我的根上下文
(忘记 ******
无论如何......)
<?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.xsd">
<!-- Root Context: defines shared resources visible to all other web components -->
<bean id="dataSource" class="org.apache.ibatis.datasource.pooled.PooledDataSource">
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://*******:3306/*****_web"/>
<property name="username" value="root"/>
<property name="password" value="*******"/>
</bean>
<bean id ="sqlSessionFactory" class= "org.mybatis.spring.SqlSessionFactoryBean" >
<property name ="dataSource" ref= "dataSource"></property >
<property name="configLocation" value="classpath:mybatis/mybatis-config.xml" />
</bean >
<bean id ="transactionManager"
class= "org.springframework.jdbc.datasource.DataSourceTransactionManager" >
<property name ="dataSource" ref= "dataSource"></property >
</bean >
<bean id ="sqlSession"
class= "org.mybatis.spring.SqlSessionTemplate" >
<constructor-arg ref= "sqlSessionFactory"></constructor-arg >
</bean >
<bean id ="exService" class= "com.*****.web.service.exampleService" ></bean >
</beans>
我的 servlet 上下文
<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">
<!-- DispatcherServlet Context: defines this servlet's request-processing infrastructure -->
<!-- Enables the Spring MVC @Controller programming model -->
<annotation-driven />
<!-- Handles HTTP GET requests for /resources/** by efficiently serving up static resources in the ${webappRoot}/resources directory -->
<resources mapping="/resources/**" location="/resources/" />
<!-- Resolves views selected for rendering by @Controllers to .jsp resources in the /WEB-INF/views directory -->
<beans:bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<beans:property name="prefix" value="/WEB-INF/views/" />
<beans:property name="suffix" value=".jsp" />
</beans:bean>
<context:component-scan base-package="com.******.web.controller" />
</beans:beans>
我已经用谷歌搜索了半天,得到了一些提示,但没有确切的解决方案。好像是怎么回事??
已添加
在谷歌搜索时,我得到了这个提示并进行了相应的配置。
<bean id ="exDao" class= "com.*****.web.dao.implement.exampleDaoImplement" >
<property name="sqlSessionFactory" ref="sqlSessionFactory"></property>
</bean >
(没有定义属性,在启动服务器时抛出错误,说属性sqlSessionFactory
或SqlSessionTemplate
是必需的。)
但它不起作用......即使使用这种配置,仍然存在空点错误。
最佳答案
第一个想法:在 servlet-context.xml 中,您编写了:
<context:component-scan base-package="com.******.web.controller" />
这意味着 Spring 将在该文件夹中仅查找您的注释类(如 @Service
和其他)。你有没有把你的 DAO 放在“com.******.web.controller”文件夹之外?这可以解释为什么它仍然是 null
.
一个简单的测试是使用“com.******”来确保每个文件夹都被扫描。
第二个想法:如果你想让 Spring 实例化你的 DAO 类,你必须添加 @Repository
在 DAO 接口(interface)的具体实现中注释。
第三个想法:您不应该对同一个类使用 XML 配置和注释。在您的示例中,您不需要使用 <bean id ="exService" class= "com.*****.web.service.exampleService"></bean >
如果你使用 @Service
在 exampleService 类和你的 <component-scan>
中覆盖服务所在的目录。
最后说明:您在评论中使用 @Service("exService")
解决了你的问题。这是因为,如果您不指定组件的名称,Spring 会查找具有给定类型(而不是其名称)的任何现有 bean ).所以,它注入(inject)了你在 XML 中声明的 bean,它有一个 null
。道。
为避免此类问题,您应该始终在使用它的变量名称之后显式命名您的 bean,此处为 @Service("exService")
切换“按名称绑定(bind)”行为,这使您的代码按预期工作:
// This works because the name of the variable
// matches the @Service("exService") annotation
@Autowired
private ExampleService exService;
感谢@RohitJain 的最后一个说明。
与您的问题无关,Java 类和接口(interface)应始终用大写字母书写(例如“ExampleDao”、“ExampleDaoImplement”和“ExampleService”)。
关于java - Autowiring 类为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28937783/
这更像是一个最佳实践类型的问题。 我听过很多次: a) 在 Spring 中 Autowiring 时,最佳做法是 Autowiring 接口(interface)“而不是”实现。 和.. b) 我还
我正在查看工作区中的一些旧示例。我看不出怎么样由于没有 @Autowired, Autowiring 完成。 Spring boot + facebook 默认配置。 @Controller @Req
事实似乎并非如此。我曾经认为 XML 配置是为了覆盖注释。但是当我在XML配置中设置autowire =“no”时,bean的@Autowired注释属性仍然有效。我不再确定 XML autowire
为什么需要 Autowiring ? Autowiring 概念的解释是什么?@autowired Spring Framework 中的注释. 最佳答案 不需要 Autowiring ,只是方便。
来自this Spring documentation我知道当我使用@Bean时,默认值已经相当于: @Bean(autowire = Autowire.NO) (Default) No autowi
遇到了一个奇怪的要求。我需要将唯一的错误 ID 附加到 log4j 消息并将该消息 ID 返回给接口(interface)。所以,我虽然让我们创建一个 spring 服务,就像这样 public cl
这个问题已经有答案了: @Autowire failing with @Repository (3 个回答) 已关闭 4 年前。 我有一个类“ReportEverythingForm”,它拒绝通过自动
我是 Spring 的新手。我正面临 Spring-Boot 的问题。我正在尝试将一个字段从外部配置文件 Autowiring 到一个 Autowiring 的 bean 中。我有以下类(class)
我有一个带有存储库的 Spring Boot 应用程序。 我还使用@Service并扩展其中的存储库。 当我尝试 @Autowired 我拥有的服务时: Caused by: org.springfr
我有一个接口(interface)C,想要访问另外两个类中的getClassName()。访问 a.getClassName() 时,method1() 中出现异常。 public interface
我遇到了一个奇怪的问题,其中注入(inject)了 @Autowire 的 Component 在一个类中可用,但在另一个类中不可用。 我在Account和Agreement类的属性network中使
考虑以下示例代码: public class SmallCar { private CarEngine carEngine; @Autowired public SmallCa
autowire = "no"和 autowire = "default"有什么区别?如果它们相同,那么为什么我们有这 2 个选项。 最佳答案 Beans The default is "defaul
我已将项目更改为使用注释而不是 xml 文件,但这会增加应用程序部署时间。现在我正在寻找减少它的方法。 按类型 Autowiring 和按名称 Autowiring 之间有性能差异吗? 热烈欢迎任何其
我有一个与 Web 插件一起使用的 spring boot 应用程序。 在一节课中我有: package com.test.company @Component @RestController pub
我有一个可以执行某些操作的系统。该系统使用以下方法为每个对象创建一个单独的线程: stp.scheduleWithFixedDelay((EditSite) ctx.getBean("EditSite
我正在尝试自动连接存储库,但它无法工作。我已经为此苦苦挣扎了一个星期,但我似乎无法弄清楚。有趣的是,当我注释掉人员存储库的 Autowiring 时,程序可以正常工作并正确编译,但是一旦我尝试 Aut
意味着如果具有所需类型的 bean 不超过 1 个,bean 的所有字段将自动注入(inject)依赖项。 问题是当使用注解时它是如何工作的,它到底能不能工作。 我的测试表明即使我使用 @Resou
我有一个 Autowiring 其他 bean 的组件: @Component public class MyComponent { @Autowired private Enviro
这是我的类代码,其中有 @Autowired 字段: 测试A @ContextConfiguration("classpath:spring.xml") public abstract class T
我是一名优秀的程序员,十分优秀!