91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring根據XML配置文件注入屬性的方法

發布時間:2020-10-19 15:01:10 來源:腳本之家 閱讀:101 作者:Advancing-Swift 欄目:編程語言

方法一使用setter方法

package com.swift;

public class Book {
 private String bookName;

 public void setBook(String bookName) {
  this.bookName = bookName;
 }

 @Override
 public String toString() {
  return "Book [book=" + bookName + "]";
 }
}

在Spring框架中,假定Servlet類中不能直接生成Book類的對象,并注入String bookName的屬性值

而需要通過配置文件xml的方法

<?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">
<!-- IoC 控制反轉 SpringSpring根據XML配置文件注入屬性 -->
<bean id="book" class="com.swift.Book">
<property name="bookName" value="三體——黑暗森林"></property>
</bean>
</beans>

Servlet類代碼:

package com.swift;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

@WebServlet("/book")
public class BookServlet extends HttpServlet {
 private static final long serialVersionUID = 1L;
 public BookServlet() {
  super();
 }
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  response.setCharacterEncoding("utf-8");
  response.setContentType("text/html;charset=utf-8");
  response.getWriter().append("Served at: ").append(request.getContextPath());
  @SuppressWarnings("resource")
  //就是下邊這幾句了
  ApplicationContext context=new ClassPathXmlApplicationContext("a.xml");
  Book book=(Book) context.getBean("book");
  String bookInfo=book.fun();
  response.getWriter().println();
  response.getWriter().append(bookInfo);
 }

 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
  doGet(request, response);
 }

}

注意

beans 、context、core 和expression核心jar包

以及commons-logging 和log4j兩個jar包不要缺少

方法二使用有參構造方法

以上這篇Spring根據XML配置文件注入屬性的方法就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淳安县| 永康市| 晋江市| 沧源| 宁海县| 兴隆县| 同德县| 巩义市| 万荣县| 丹江口市| 牙克石市| 施甸县| 杭锦旗| 黄陵县| 浙江省| 河源市| 稷山县| 兴义市| 吉木萨尔县| 平和县| 长沙县| 赤壁市| 色达县| 镇坪县| 皋兰县| 疏附县| 巴彦淖尔市| 昔阳县| 长治市| 波密县| 手机| 綦江县| 当阳市| 廊坊市| 个旧市| 赤壁市| 特克斯县| 桐梓县| 余姚市| 峨山| 新巴尔虎左旗|