Thursday, December 22, 2016

Some Questions

1. Java 集合
2. Spring IOC \AOP
3. Spring MVC
4. JSP 的标签
5. Jquery 的选择器
6. 事件冒泡
7. 数据库链接管理
8. Mybatis 的功能有哪些
9. 序列图与活动图的关系
10. JAVA后台测试,JS前台测试分别用的什么代码来实现的。如何做的?

Thursday, July 2, 2015

mvn command not found in MAC Terminal


  1. vi ~/.bash_profile
  2. #set JAVA_HOME
  3. JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_71.jdk/Contents/Home
    export JAVA_HOME


    M2_HOME=/usr/local/apache-maven/apache-maven-3.3.3
    export M2_HOME

    PATH=$PATH:$JAVA_HOME/bin:$M2_HOME/bin
    export PATH
  4. esc
  5. :wq
  6. source ~/.bash_profile




Tuesday, June 23, 2015

angularjs Failed to instantiate module oc.lazyLoad due to:

When I open browser Internet Explorer 7 (7.0.5730)
Status tools appear error:
[$injector:modulerr] Failed to instantiate module oc.lazyLoad due to:
[$injector:nomod] Module   ‘undefined’ is not available!

But chrome (43.0.2357) is great.Console not appear error.

Friday, June 19, 2015

mac virtualbox xp ,It can't open internet


Install VM VirtualBox Guest Addtions.
Update network is Net and choose  PCnet-Fast III

Tuesday, June 2, 2015

angularjs directive not working

js 

app.directive('onlyLabelName', function($http) {
......
}

html

<input onlyLabelName><input>


when I open AngularJS websites(https://docs.angularjs.org/guide/directive),I see information on below:

The normalization process is as follows:
  1. Strip x- and data- from the front of the element/attributes.
  2. Convert the :-, or _-delimited name to camelCase.
So,I  need change onlyLabelName to only-label-name