Skip to content

Instantly share code, notes, and snippets.

@britter
Created December 22, 2015 17:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save britter/1d1b2db410298f3a7606 to your computer and use it in GitHub Desktop.
Save britter/1d1b2db410298f3a7606 to your computer and use it in GitHub Desktop.
Extended HomeController showing how to format messages retrieved from a MessageSource
/*
* Copyright 2015 Benedikt Ritter
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.britter.springbootherokudemo;
import javax.validation.Valid;
import java.util.List;
import java.util.Locale;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.MessageSource;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
@Controller
@RequestMapping("/")
public class HomeController {
private RecordRepository repository;
private MessageSource msgSource;
@Autowired
public HomeController(RecordRepository repository, MessageSource msgSource) {
this.repository = repository;
this.msgSource = msgSource;
}
@RequestMapping(method = RequestMethod.GET)
public String home(ModelMap model) {
List<Record> records = repository.findAll();
model.addAttribute("records", records);
model.addAttribute("insertRecord", new Record());
model.addAttribute("commitHash", getAbbreviatedCommitHash());
return "home";
}
private String getAbbreviatedCommitHash() {
String commitHash = msgSource.getMessage("git.commit.hash", new Object[]{}, Locale.getDefault());
return commitHash.substring(0, 7);
}
@RequestMapping(method = RequestMethod.POST)
public String insertData(ModelMap model,
@ModelAttribute("insertRecord") @Valid Record record,
BindingResult result) {
if (!result.hasErrors()) {
repository.save(record);
}
return home(model);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment