Raible's Wiki

Raible Designs
Wiki Home
News
Recent Changes

AppFuse

Homepage
  - Korean
  - Chinese
  - Italian
  - Japanese

QuickStart Guide
  - Chinese
  - French
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish
  - Japanese

User Guide
  - Korean
  - Chinese

Tutorials
  - Chinese
  - German
  - Italian
  - Korean
  - Portuguese
  - Spanish

FAQ
  - Korean

Latest Downloads

Other Applications

Struts Resume
Security Example
Struts Menu

Set your name in
UserPreferences


Referenced by
Articles
Articles_pt
CreateActions
CreateDAO
CreateDAO_sp
CreateDAOiBATIS
CreateDAOiBATIS_ko
CreateManager_es
JSFBeans
SpringControllers
...and 3 more




JSPWiki v2.2.33

[RSS]


Hide Menu

CreateManager


Difference between version 69 and version 68:

At line 38 removed 1 line.
At line 83 changed 1 line.
assertEquals(person.getFirstName(), "Bill"));
assertEquals(person.getFirstName(), "Bill");
At line 116 removed 2 lines.
import java.util.List;
At line 119 removed 1 line.
public List getPeople(Person person);
At line 136 removed 2 lines.
import java.util.List;
At line 145 removed 4 lines.
public List getPeople(Person person) {
return dao.getPeople(person);
}
At line 178 changed 1 line.
To notify Spring of this our PersonManager interface and it's implementation, open the src/service/**/service/applicationContext-service.xml file. In here, you should see a commented out definition for the "personManager" bean. Uncomment this, or add the following to the bottom of this file.
To notify Spring of this our PersonManager interface and its implementation, open the src/service/**/service/applicationContext-service.xml file. In here, you should see a commented out definition for the "personManager" bean. Uncomment this, or add the following to the bottom of this file.
At line 184 changed 1 line.
<bean class="org.appfuse.service.impl.PersonManagerImpl" autowire="true"/>
<bean class="org.appfuse.service.impl.PersonManagerImpl" autowire="byName"/>
At line 189 changed 1 line.
The "parent" attribute refers to a bean definition for a TransactionProxyFactoryBean that has all the basic transaction attributes set.
The "parent" attribute refers to a bean definition for a [TransactionProxyFactoryBean|http://www.springframework.org/docs/api/org/springframework/transaction/interceptor/TransactionProxyFactoryBean.html] that has all the basic transaction attributes set.
At line 194 changed 1 line.
Save all your edited files and try running "ant test-service -Dtestcase=PersonManager" one more time.
Save all your edited files and try running "ant test-service -Dtestcase=PersonManager".

Back to CreateManager, or to the Page History.