全部博文(695)
发布时间:2017-09-26 10:37:27
Context namespace element 'componentscan' and its parser class [org.springframework.context.annotation.ComponentScanBeanDefinitionParser] are only available on JDK 1.5 and higher不知道什么原因之前运行的一直没有问题,.........【阅读全文】
发布时间:2017-05-31 16:26:08
现象: action中的@autowired注入service或dao失败,报空指针异常原因: 造成该问题的原因是你并没有做好spring和jersey的整合工作,检查你的web.xml文件,jersey的配置肯定是下面这样点击(此处)折叠或打开.........【阅读全文】
发布时间:2017-05-31 16:23:40
现象: action中的@autowired注入service或dao失败,报空指针异常原因: 造成该问题的原因是你并没有做好spring和jersey的整合工作,检查你的web.xml文件,jersey的配置肯定是下面这样点击(此处)折叠或打开.........【阅读全文】
发布时间:2017-05-18 11:47:43
事务确实是数据库的事情,但是我们得要把事务的起点和终点告诉数据库吧。 如果你直接使用jdbc的话就会需要如下类似的代码点击(此处)折叠或打开try{ conn=DriverManager.getConnection("jdbc:odbc:grade"); defaultCommit=conn.getAutoC.........【阅读全文】
发布时间:2017-05-17 22:43:09
先上简单示例代码 点击(此处)折叠或打开public interface Subject { public void buy(); public void hello(String str);}.........【阅读全文】