jsp自定標籤(並且注入spring容器中的bean)

來源:互聯網
上載者:User

標籤:jsp   tag   自訂標籤   

作用

在我們開發中,介面和程式碼是分開做的美工做介面但是美工不懂得Java語言如果我們把Java代碼寫在jsp檔案中,會影響美工工作如果我們使用自訂標籤,到時再jsp中我們只需要加入一段引用標籤代碼就好了不會影響美工工作此外jsp檔案簡單,方便我們以後修改

1建立類

package com.eyugame.common.tag;import java.io.IOException;import javax.servlet.jsp.JspException;import javax.servlet.jsp.JspWriter;import javax.servlet.jsp.tagext.TagSupport;import org.springframework.web.context.ContextLoader;import org.springframework.web.context.WebApplicationContext;import com.eyugame.common.service.hibernate.HibernateBaseService;import com.eyugame.security.entity.SysUser;public class MyTag extends TagSupport {private static HibernateBaseService hibernateBaseService;private String username;/** *  */private static final long serialVersionUID = 1L;@Overridepublic int doStartTag() throws JspException {JspWriter writer = this.pageContext.getOut();/*擷取bean*/if(hibernateBaseService==null){WebApplicationContext webApplicationContext = ContextLoader.getCurrentWebApplicationContext();hibernateBaseService = (HibernateBaseService) webApplicationContext.getBean("hibernateBaseService");}/*查詢資料庫*/SysUser user = hibernateBaseService.findUniqueByHql(SysUser.class, "from SysUser as u where u.username='" + username + "'");try {writer.print(user.getNickname());} catch (IOException e) {e.printStackTrace();}return SKIP_BODY;}@Overridepublic int doEndTag() throws JspException {return super.doEndTag();}public String getUsername() {return username;}public void setUsername(String username) {this.username = username;}}

建立tld檔案

my.tld

<?xml version="1.0" encoding="UTF-8"?><taglib version="2.0" xmlns="http://java.sun.com/xml/ns/j2ee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"><tlib-version>1.0</tlib-version><jsp-version>2.0</jsp-version><short-name>cc</short-name><uri>/mytaglib</uri><tag><name>myTag</name><tag-class>com.eyugame.common.tag.MyTag</tag-class><body-content>empty</body-content><attribute><name>username</name><required>true</required><rtexprvalue>true</rtexprvalue></attribute></tag></taglib>
3.web.xml加入以下配置

 <jsp-config>  <taglib>      <taglib-uri>/tagTest </taglib-uri>      <taglib-location>/tld/my.tld</taglib-location>    </taglib>  </jsp-config>
4.jsp頁面加入以下內容
<!--jsp頂部加入, uri是在web項目的上下文路徑 --><%@taglib prefix="cc" uri="/tld/my.tld" %>   <!-- 在body內加入 -->   <cc:myTag username="admin" />

先看我資料庫有條記錄


jsp展示後

結果正確


jsp自定標籤(並且注入spring容器中的bean)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.