search

Simulate spring functions

Dec 20, 2016 pm 03:26 PM
spring

1. Create User.java with the following content:

package net.model;
/**
 * @项目名:spring2.5
 * @包名:net.model
 * @文件名:User.java
 * @日期:Jun 22, 2011 4:31:22 PM
 * @备注:
 * @作者:apple
 */
public class User {
private String username;
private String password;
public String getUsername() {return username;}
public void setUsername(String username) {this.username = username;}
public String getPassword() {return password;}
public void setPassword(String password) {
this.password = password;
}
}

2. Create UserDao.java with the following content:

package net.dao;
import net.model.User;
/**
 * @项目名:spring2.5
 * @包名:net.dao
 * @文件名:UserDao.java
 * @日期:Jun 22, 2011 4:12:42 PM
 * @备注:
 * @作者:apple
 */
public interface UserDao {
public void save(User u);
}

3. Create UserDaoImpl.java with the following content:

package net.dao.impl;
import net.dao.UserDao;
import net.model.User;
/**
 * @项目名:spring2.5
 * @包名:net.dao.impl
 * @文件名:UserDaoImpl.java
 * @日期:Jun 22, 2011 4:13:45 PM
 * @备注:
 * @作者:apple
 */
public class UserDaoImpl implements UserDao {
public void save(User u) {
// TODO Auto-generated method stub
System.out.println("user save...");
}
}

4. Create UserService.java with the following content:

package net.service;
import net.dao.UserDao;
import net.dao.impl.UserDaoImpl;
import net.model.User;
/**
 * @项目名:spring2.5
 * @包名:net.service
 * @文件名:UserService.java
 * @日期:Jun 22, 2011 4:15:47 PM
 * @备注:
 * @作者:apple
 */
public class UserService {
private UserDao userDao ;
public UserDao getUserDao() {
return userDao;
}
public void setUserDao(UserDao userDao) {
this.userDao = userDao;
}
public void add(User u){
userDao.save(u);
}//这里可以调用任务实现了UserDao接口的save方法了。
}

5. Create BeanFactory.java with the following content:

package net.factory;
/**
 * @项目名:spring2.5
 * @包名:net.factory
 * @文件名:BeanFactory.java
 * @日期:Jun 22, 2011 4:37:08 PM
 * @备注:
 * @作者:apple
 */
public interface BeanFactory {
public Object getBean(String name);
}

6. Create ClassPathXmlApplicationContext.java with the following content:

package net.util;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import net.dao.UserDao;
import net.factory.BeanFactory;
import net.model.User;
import net.service.UserService;
import org.jdom.Document;
import org.jdom.Element;
import org.jdom.input.SAXBuilder;
/**
 * @项目名:spring2.5
 * @包名:net.util
 * @文件名:ClassPathXmlApplicationContext.java
 * @日期:Jun 22, 2011 4:19:35 PM
 * @备注:
 * @作者:apple
 */
public class ClassPathXmlApplicationContext implements BeanFactory{ 
private Map<String,Object> beans = new HashMap<String, Object>();
    public ClassPathXmlApplicationContext() throws Exception{
    SAXBuilder sb=new SAXBuilder();//创建一个SAXBuilder对象
    Document doc=sb.build(ClassPathXmlApplicationContext.class.getClassLoader().getResourceAsStream("beans.xml")); //构造文档对象
    Element root=doc.getRootElement(); //获取根元素
    List list=root.getChildren("bean");//取名字为bean的所有元素 
    for(int i=0;i<list.size();i++){ 
          Element element=(Element)list.get(i); 
          String id = element.getAttributeValue("id");
          String clazz = element.getAttributeValue("class");
          System.out.println(id + ":" + clazz);
          Object o = Class.forName(clazz).newInstance();
          beans.put(id, o); 
          //* 以下for循环是实现模拟spring自动装配(注入)功能
      //一开始列出此bean的所有property子元素
      for (Element propertyElement : (List<Element>)element.getChildren("property")){
      //获取property子元素中 属性为name的值(也就是需要注入的参数名称)
      String name = propertyElement.getAttributeValue("name");
      //获取property子元素中 属性为bean的值 (需要注入参数的类型),此处的bean值是已经在上面初始化好了的bean的ID了。
      String bean = propertyElement.getAttributeValue("bean");
      //因此此处获取指定ID的bean
      Object beanObject = beans.get(bean);
      
      //组成set方法名称:set + 第一个字母大写 + 其它的字母
      String methodName = "set" + name.substring(0,1).toUpperCase() + name.substring(1);
      System.out.println("methodName = " + methodName);
      //获取bean的set方法,参数(方法名,参数:此参数的类型)
      Method m = o.getClass().getMethod(methodName, beanObject.getClass().getInterfaces()[0]);
      //使用反映机制,执行method方法,从而实现注入功能
      m.invoke(o, beanObject);
      }
       }   
    }
    public Object getBean(String name){
return beans.get(name);
}
    
    public static void main(String[] args){
    BeanFactory factory=null;
try {
factory = new ClassPathXmlApplicationContext();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
UserService service = (UserService)factory.getBean("userService");
User u = new User();
service.add(u);
    }
}

7. Create beans.xml with the following content:

<?xml version="1.0" encoding="UTF-8"?>
<beans>
<bean id="u" class="net.dao.impl.UserDaoImpl">
</bean>
<bean id="userService" class="net.service.UserService">
<property name="userDao" bean="u"/>
</bean>
</beans>


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
C# and the .NET Runtime: How They Work TogetherC# and the .NET Runtime: How They Work TogetherApr 19, 2025 am 12:04 AM

C# and .NET runtime work closely together to empower developers to efficient, powerful and cross-platform development capabilities. 1) C# is a type-safe and object-oriented programming language designed to integrate seamlessly with the .NET framework. 2) The .NET runtime manages the execution of C# code, provides garbage collection, type safety and other services, and ensures efficient and cross-platform operation.

C# .NET Development: A Beginner's Guide to Getting StartedC# .NET Development: A Beginner's Guide to Getting StartedApr 18, 2025 am 12:17 AM

To start C#.NET development, you need to: 1. Understand the basic knowledge of C# and the core concepts of the .NET framework; 2. Master the basic concepts of variables, data types, control structures, functions and classes; 3. Learn advanced features of C#, such as LINQ and asynchronous programming; 4. Be familiar with debugging techniques and performance optimization methods for common errors. With these steps, you can gradually penetrate the world of C#.NET and write efficient applications.

C# and .NET: Understanding the Relationship Between the TwoC# and .NET: Understanding the Relationship Between the TwoApr 17, 2025 am 12:07 AM

The relationship between C# and .NET is inseparable, but they are not the same thing. C# is a programming language, while .NET is a development platform. C# is used to write code, compile into .NET's intermediate language (IL), and executed by the .NET runtime (CLR).

The Continued Relevance of C# .NET: A Look at Current UsageThe Continued Relevance of C# .NET: A Look at Current UsageApr 16, 2025 am 12:07 AM

C#.NET is still important because it provides powerful tools and libraries that support multiple application development. 1) C# combines .NET framework to make development efficient and convenient. 2) C#'s type safety and garbage collection mechanism enhance its advantages. 3) .NET provides a cross-platform running environment and rich APIs, improving development flexibility.

From Web to Desktop: The Versatility of C# .NETFrom Web to Desktop: The Versatility of C# .NETApr 15, 2025 am 12:07 AM

C#.NETisversatileforbothwebanddesktopdevelopment.1)Forweb,useASP.NETfordynamicapplications.2)Fordesktop,employWindowsFormsorWPFforrichinterfaces.3)UseXamarinforcross-platformdevelopment,enablingcodesharingacrossWindows,macOS,Linux,andmobiledevices.

C# .NET and the Future: Adapting to New TechnologiesC# .NET and the Future: Adapting to New TechnologiesApr 14, 2025 am 12:06 AM

C# and .NET adapt to the needs of emerging technologies through continuous updates and optimizations. 1) C# 9.0 and .NET5 introduce record type and performance optimization. 2) .NETCore enhances cloud native and containerized support. 3) ASP.NETCore integrates with modern web technologies. 4) ML.NET supports machine learning and artificial intelligence. 5) Asynchronous programming and best practices improve performance.

Is C# .NET Right for You? Evaluating its ApplicabilityIs C# .NET Right for You? Evaluating its ApplicabilityApr 13, 2025 am 12:03 AM

C#.NETissuitableforenterprise-levelapplicationswithintheMicrosoftecosystemduetoitsstrongtyping,richlibraries,androbustperformance.However,itmaynotbeidealforcross-platformdevelopmentorwhenrawspeediscritical,wherelanguageslikeRustorGomightbepreferable.

C# Code within .NET: Exploring the Programming ProcessC# Code within .NET: Exploring the Programming ProcessApr 12, 2025 am 12:02 AM

The programming process of C# in .NET includes the following steps: 1) writing C# code, 2) compiling into an intermediate language (IL), and 3) executing by the .NET runtime (CLR). The advantages of C# in .NET are its modern syntax, powerful type system and tight integration with the .NET framework, suitable for various development scenarios from desktop applications to web services.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)