Soap and rest
Shane's Blog
Thursday, March 1, 2018
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前台测试分别用的什么代码来实现的。如何做的?
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
- vi ~/.bash_profile
- #set JAVA_HOME
- esc
- :wq
- source ~/.bash_profile
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
Wednesday, June 24, 2015
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.
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:
- Strip
x-anddata-from the front of the element/attributes.- Convert the
:,-, or_-delimited name tocamelCase.So,I need change onlyLabelName to only-label-name
Subscribe to:
Comments (Atom)