spring 注解

问题描述

帮我看下那错了Spring<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:aop="http://www.springframework.org/schema/aop"xmlns:tx="http://www.springframework.org/schema/tx"xmlns:jdbc="http://www.springframework.org/schema/jdbc"xmlns:context="http://www.springframework.org/schema/context"xsi:schemaLocation="http://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context-3.0.xsdhttp://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans-3.0.xsdhttp://www.springframework.org/schema/jdbchttp://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsdhttp://www.springframework.org/schema/txhttp://www.springframework.org/schema/tx/spring-tx-3.0.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop-3.0.xsd"default-lazy-init="false"><!--<context:component-scanbase-package="org.javacoo.crawler.ui"/>--><!--允许autowire--><context:annotation-config/><beanid="MainFrame"class="com.supermarket.main.MainFrame"></bean></beans>

publicclassTestimplementsITest{privateMainFramemain1;publicvoidsetMain1(MainFramemain1){this.main1=main1;}publicTest(){main1.run1();}publicstaticvoidmain(String[]args){ApplicationContextac=newClassPathXmlApplicationContext("resources/applicationContext.xml");//MainFramem=(MainFrame)ac.getBean("MainFrame");//m.run1();newTest();}

解决方案

解决方案二:
报的啥子错哦。大家肉眼不是编译器。再说你这还是运行时错误。
解决方案三:
你这哪里看到注解了?

时间: 2025-01-24 18:22:44

spring 注解的相关文章

javaweb-关于spring注解问题。

问题描述 关于spring注解问题. Spring哪句注解可以代替织入bean例如 applicationContent.xml的 <bean id=""contentDao"" class=""com.itschool.dao.ContentDao""></bean> 这个类 public class ContentDao {} 到了这个类里面,头顶要写哪个注解才不需要到配置文件织入啊,我试过写@Co

hibernate-一个Spring4Hibernate4的开源项目,spring注解了接口,这是什么意思?

问题描述 一个Spring4Hibernate4的开源项目,spring注解了接口,这是什么意思? //Service @Service @Transactional public class UserLogonLogService extends BaseService { @Autowired private UserLogonLogDao userLogonLogDao; ... //Dao @Repository public interface UserLogonLogDao exte

这是spring注解的问题吗?应该怎么解决

问题描述 这是spring注解的问题吗?应该怎么解决 Error creating bean with name 'billAction': Injection of resource fields failed; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'billServiceImp': Injection of reso

关于spring注解事务传播机制的REQUIRED和REQUIRES_NEW

问题描述 关于spring注解事务传播机制的REQUIRED和REQUIRES_NEW 这是有注解REQUIRED的方法: @Transactional(propagation=Propagation.REQUIRES_NEW) public void updateUserRequired(int sid) { User user = new User(); User user1 = null; user1=getUserInfo("1", null); user.setID(&quo

【求助】DWR如何使用spring注解管理的bean

问题描述 我在开发过程中,遇到这样一个问题:用户注册时输入邮箱,然后使用dwr进行校验.<createcreator="new"javascript="LoginCheckDwr"><paramname="class"value="cn.com.web.account.dwr.LoginCheckDwr"/></create>下面是这个dwr的代码publicclassLoginCheckD

spring 注解调用为null

问题描述 spring 注解调用为null spring通过注解获取的service对象,在其他类中可以正常使用,但是在这个类中就没法用拿到的是个null 解决方案 这个类和其他类有啥差异? 解决方案二: 这个类不是在spring上下文环境中吧,用这种形式呢,applicationContext.getBean(beanType):试试吧.

spring 注解事务回滚问题

问题描述 spring 注解事务回滚问题 ,错误异常是数据库表主键不可重复,控制台报了违反了表的约术,但是SPring却不回滚..项目能正常运行.用的是注解. 解决方案 看看这里http://my.oschina.net/xuqiang/blog/97633

app-APP 与html/jsp使用同样的spring注解方式得到json 有点类似webservice

问题描述 APP 与html/jsp使用同样的spring注解方式得到json 有点类似webservice 求助:我想做到APP与jsp访问同样的controller得到json,然后页面加载, 但是我有点糊涂在一些spring mvc 配置中使用ModelAndView("...jsp")的形式来跳转页面, 该怎么设计才好 解决方案 增加@ResponseBody 注解,返回json串

sping hibernate 事务-spring注解方式事务控制没有回滚

问题描述 spring注解方式事务控制没有回滚 项目中使用到了hibernate以及spring事务控制,在service层增加事务控制但是遇到异常没有回滚. 代码如下: 配置文件 <?xml version="1.0" encoding="UTF-8"?> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springfr

关于spring注解定时任务查hibernate没有释放连接

问题描述 关于spring注解定时任务查hibernate没有释放连接 如图,我按照网上的教程配置好了spring 的注解定时任务,但是每次执行了几次以后,数据库的连接数就上升,连接数没释放,我的是spring 管理hibernate关闭session的,别的类都没有这个问题,唯独是这个TimeService不能关闭.当然,我自己open一个Session是没有问题的,连接数不能上升,但是我想更加简便,而不需要每次都要我打开一个session关闭它.