亚洲一区二区影院,亚洲日韩中文字幕日韩在线,亚洲精品无码MV在线观看http://m.tkk7.com/itwangyuxia/我就會牢牢抓住!zh-cnTue, 13 May 2025 13:02:28 GMTTue, 13 May 2025 13:02:28 GMT60需求工程師的工作內容http://m.tkk7.com/itwangyuxia/archive/2014/03/05/410649.htmlwyxwyxWed, 05 Mar 2014 07:23:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2014/03/05/410649.htmlhttp://m.tkk7.com/itwangyuxia/comments/410649.htmlhttp://m.tkk7.com/itwangyuxia/archive/2014/03/05/410649.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/410649.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/410649.html1.和業務部門 、客戶溝通(溝通是整個需求設計到開發使用為止);
2.學習業務;
3.有意識聽速求(客戶最急需的),也就是優先級問題;
4.搜集需求,整合,提煉,完成分析;(考慮周全找關聯 找核心)
5.編寫需求產品文檔(文字和圖列、流程圖等相結合)
6.掌握相關工具;(比如visio/axure)
7.文檔系統講解(講解對象:開發和測試)
8.驗證開發完后的產品(驗證結束后再測試);
9.用戶培訓(需求工程師主持);
10.了解相關系統(了解整個業務面 而不是 內部的功能點);

注意:數據表設計中盡量存可分析的信息代碼;

wyx 2014-03-05 15:23 發表評論
]]>
面試題積累http://m.tkk7.com/itwangyuxia/archive/2014/03/04/410592.htmlwyxwyxTue, 04 Mar 2014 07:35:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2014/03/04/410592.htmlhttp://m.tkk7.com/itwangyuxia/comments/410592.htmlhttp://m.tkk7.com/itwangyuxia/archive/2014/03/04/410592.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/410592.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/410592.html
  • struts1和struts2的區別
  • hibernate和ibatis的區別
  • json和xml的區別
  • ajax的原理
  • ajax和iframe嵌套有什么區別
  • gbk utf8 iso-8859-1都是多少字節
  • extjs和jquery的區別
  • js從前端如何解決跨域問題
  • 單例模式的優點,工廠模式的原理
  • spring的mvc模式
  • jdk1.7新功能
  • 為什么會出現亂碼


  • wyx 2014-03-04 15:35 發表評論
    ]]>
    Hibernate 查詢有關in的查詢http://m.tkk7.com/itwangyuxia/archive/2013/11/18/406487.htmlwyxwyxMon, 18 Nov 2013 09:42:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/11/18/406487.htmlhttp://m.tkk7.com/itwangyuxia/comments/406487.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/11/18/406487.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/406487.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/406487.htmlhttp://www.iteye.com/problems/74892

    List<Integer> ids = new ArrayList<Integer>();
    ids.add(3);
    ids.add(4);
    ids.add(5);
    Query query=session.createQuery(from document where id in (:ids)); 
    query.setParameterList("ids", ids);
    query.list();


    wyx 2013-11-18 17:42 發表評論
    ]]>
    用hibernate插入數據保證插入數據ID同步 ,插入之后返回對象http://m.tkk7.com/itwangyuxia/archive/2013/11/04/405980.htmlwyxwyxMon, 04 Nov 2013 09:43:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/11/04/405980.htmlhttp://m.tkk7.com/itwangyuxia/comments/405980.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/11/04/405980.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/405980.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/405980.html

    wyx 2013-11-04 17:43 發表評論
    ]]>
    關于登錄界面 記住用戶名和密碼的一段代碼 http://m.tkk7.com/itwangyuxia/archive/2013/11/01/405901.htmlwyxwyxFri, 01 Nov 2013 07:08:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/11/01/405901.htmlhttp://m.tkk7.com/itwangyuxia/comments/405901.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/11/01/405901.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/405901.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/405901.htmlCookie cookies[]=request.getCookies();
        Cookie stCookie=null;
        String password=null;
        String passwordvalue=null;
        String usernamevalue=null;
        String cookiename = null;
        String nameandpassword[]=new String[3];
        if (cookies != null) {
       for (int i = 0; i < cookies.length; i++) {
        stCookie = cookies[i];
        cookiename = stCookie.getName();
        if (cookiename!=null && cookiename.equalsIgnoreCase("db_password")) {
         passwordvalue = stCookie.getValue();
         password = passwordvalue;//.substring(8, passwordvalue.length()-3);
         nameandpassword[1] = password.trim();
        }
        if (cookiename!=null && cookiename.equalsIgnoreCase("db_username")) {
         usernamevalue = stCookie.getValue();
         nameandpassword[0] = usernamevalue.trim();
        }
        }
     }




    <body>
    <p>
           <label for="LoginName">
            用戶名 / 郵箱:
           </label>
           <input class="text" type="text" id="LoginName" name="LoginName"
            value="<%=nameandpassword[0]==null?"":nameandpassword[0] %>" />
          </p>
          <p>
           <label for="Password">
            密碼:
           </label>
           <input class="text" type="password" value="<%=nameandpassword[1]==null?"":nameandpassword[1] %>" name="Password" id="Password" />
          </p>


    </body>

    wyx 2013-11-01 15:08 發表評論
    ]]>
    form表單提交兩次原因http://m.tkk7.com/itwangyuxia/archive/2013/10/18/405390.htmlwyxwyxFri, 18 Oct 2013 01:21:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/10/18/405390.htmlhttp://m.tkk7.com/itwangyuxia/comments/405390.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/10/18/405390.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/405390.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/405390.html最后才找到原因 提交表單的按鈕就是設置成button的了 但是名稱是submitButton也不可以 所以修改下按鈕名稱就可以了?。?!
    ⊙﹏⊙b汗

    wyx 2013-10-18 09:21 發表評論
    ]]>
    關于安全問題——用戶中心http://m.tkk7.com/itwangyuxia/archive/2013/09/04/403665.htmlwyxwyxWed, 04 Sep 2013 09:13:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/09/04/403665.htmlhttp://m.tkk7.com/itwangyuxia/comments/403665.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/09/04/403665.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/403665.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/403665.html而不是通過用戶ID獲得(否則當有人知道通過ID傳值,容易輕易修改掉其他用戶的信息)

    2.前臺下載也需要通過后臺處理 放置業內人士知道下載文件真實地址,獲得大量數據信息

    wyx 2013-09-04 17:13 發表評論
    ]]>
    FCKeditor 取值http://m.tkk7.com/itwangyuxia/archive/2013/07/31/402198.htmlwyxwyxWed, 31 Jul 2013 06:19:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/07/31/402198.htmlhttp://m.tkk7.com/itwangyuxia/comments/402198.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/07/31/402198.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/402198.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/402198.html《轉自http://blog.sina.com.cn/s/blog_5f66526e0100kf6b.html

    主要步驟:

    第一步:導入需要的js文件(根據實際情況修改相應路徑)
    <script src="js/jquery.js" type=text/javascript></script>   
    <script src="fckeditor/fckeditor.js" type="text/javascript"></script>
    第二步:初始化(根據實際情況修改相應路徑)   

    sBasePath    = '/duotunkf/fckeditor/' ;#編輯器所在文件夾;
    oFCKeditor    = new FCKeditor('content') ;
    oFCKeditor.BasePath = sBasePath ;
    oFCKeditor.Value = 'test' ;
    oFCKeditor.ToolbarSet = 'Basic' ;
    oFCKeditor.Create() ;

    其中content為頁面你所綁定的textArea的id或name

    第三步:取值

    var oEditor = FCKeditorAPI.GetInstance('content');  
    editorValue = oEditor.GetHTML();  
    第四步:賦值(更新的時候先把原有的值賦給textarea)

    var oEditor = FCKeditorAPI.GetInstance('content');  
    oEditor.SetHTML("value"); 

     

    下面是本人寫的一個賦值測試程序,供大家參考。源碼如下:

    <html>
     <head>

         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
            <script src="js/jquery-1.3.2.min.js"></script>
            <script src="fckeditor/fckeditor.js"></script>
            <script>
            $(document).ready(function(){
              $("#test").click(function(){
        var oEditor = FCKeditorAPI.GetInstance('content');  
        oEditor.SetHTML($("#test option:selected" ).text());
        });
      });
            </script>
     </head>
     <body>
      
      <form action="" method="post">
            <script>
                sBasePath    = '/duotunkf/fckeditor/' ;#編輯器所在文件夾;
                oFCKeditor   = new FCKeditor('content') ;
                oFCKeditor.BasePath = sBasePath ;
                oFCKeditor.Value = 'test' ;
                oFCKeditor.ToolbarSet = 'Basic' ;
                oFCKeditor.Create() ;
      </script>
       <br>
                <label for="test">
          <select name="test" size="4" id="test">
            <option value="1">i.點擊這里改變編輯器的值</option>
            <option value="2">ii.點擊這里改變編輯器的值</option>
            <option value="3">iii.點擊這里改變編輯器的值</option>
               </select>
              </label>
      </form>
     </body>
    </html>




    wyx 2013-07-31 14:19 發表評論
    ]]>
    關于數據表建設的int 和 number varchar和nvarchar的區別http://m.tkk7.com/itwangyuxia/archive/2013/07/12/401489.htmlwyxwyxFri, 12 Jul 2013 02:49:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/07/12/401489.htmlhttp://m.tkk7.com/itwangyuxia/comments/401489.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/07/12/401489.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/401489.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/401489.html提交了,剛才修正了一些問題;一主鍵需要設置number類型同時告訴擴充到10
    管華(管華) 10:44:15
    你剛才是int類型,,int最大是到6萬多吧,,如果你設置這個,意味著到時你到6萬多的會員后,系統出問題,插入不進去了,到時你還得改;
    管華(管華) 10:45:46
    第二,你用的是字符VARCHAR2類型,這個;類型在oracle里不太好,會持久化占用一部分空間,比如你設置的VARCHAR2(1000),他不管你里面有沒有數據,都會占用這1000個字符的空間;因此需要改為NVARCHAR2 ,他是自適應,當你沒存儲值,他不占據空間


    另外根據有些字段,比如人名  name  NVARCHAR2(20)分配20個字符就可了,分配500個,會浪費多余的空間同時使得系統慢碎片多;因此根據實際情況,酌情分配


    wyx 2013-07-12 10:49 發表評論
    ]]>
    sql語句特殊字符處理http://m.tkk7.com/itwangyuxia/archive/2013/07/04/401199.htmlwyxwyxThu, 04 Jul 2013 02:36:00 GMThttp://m.tkk7.com/itwangyuxia/archive/2013/07/04/401199.htmlhttp://m.tkk7.com/itwangyuxia/comments/401199.htmlhttp://m.tkk7.com/itwangyuxia/archive/2013/07/04/401199.html#Feedback0http://m.tkk7.com/itwangyuxia/comments/commentRss/401199.htmlhttp://m.tkk7.com/itwangyuxia/services/trackbacks/401199.html

    wyx 2013-07-04 10:36 發表評論
    ]]>
    主站蜘蛛池模板: 亚洲日韩中文字幕日韩在线| 在线观看无码的免费网站| 久久青青草原亚洲av无码| 美女视频黄频a免费大全视频| 日韩在线a视频免费播放| 亚洲成在人线aⅴ免费毛片| 日本免费中文字幕在线看| 亚洲国产成人久久精品软件 | 亚洲a∨无码精品色午夜| 国产在线观看片a免费观看| 亚洲天堂2017无码中文| 欧美a级在线现免费观看| 亚洲人成网站在线播放2019| 国产一区视频在线免费观看| 高清免费久久午夜精品 | 国产免费av片在线无码免费看| 爱情岛论坛亚洲品质自拍视频网站| 无码专区一va亚洲v专区在线 | 亚洲人成网站观看在线播放| 久久WWW免费人成—看片| 国产偷v国产偷v亚洲高清| 99久久久国产精品免费牛牛四川| 亚洲精品视频在线观看免费| 爽爽日本在线视频免费| 一级黄色免费毛片| 亚洲制服中文字幕第一区| 国产美女在线精品免费观看| 美女被免费视频网站| 亚洲av一综合av一区| 无码国产精品久久一区免费 | 免费人成在线观看69式小视频| 亚洲精品456人成在线| 亚洲伊人久久综合中文成人网| 精品免费视在线观看| 亚洲欧美日韩中文无线码| 亚洲精品成人区在线观看| 久草视频免费在线| 九九久久国产精品免费热6| 中文字幕亚洲第一在线| 国产成人精品123区免费视频| 在线观看片免费人成视频无码|