• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Best Practices - Strategy - Versions

 
Greenhorn
Posts: 8
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey there,

I'm thinking about possibilities to Build in my Project(s) an backward compatibility to the Database.

Example

At the Beginning we have 1 Model and 1 Controller (ignoring the View right now).

the Model has 1 Field



the Controller uses this Class Employee:




Now we enhance the Database to Model with 2 Fields:



the new Controller will be:




and now the Question:

let's say there are more than one version in use.. older and new one...and you want to have both versions available...how do you will handle this? what are your experience?

I'm thinking about an Interface which maps to the corresponding actual fields...

example:

Class Controller EmployeeV1(String adress)
String adress = substring(0, index.of(" "));
int code = substring(index.of(" "), adress.length);
...setAdress(adress)
...setCode(code)

Class Controller EmployeeV2(String adress, int code)
...setAdress(adress);
...setCode(code);

pseude code but i think the strategy should work but I think there should be better ways?

reply
    Bookmark Topic Watch Topic
  • New Topic