I have a service layer which is responsible for handling exceptions. The question is, should I be handling except开发者_JS百科ions in the service layer and how can I pass an appropriate exception me
I want to write a custom check for checkstyle. my rul开发者_JAVA百科e that i want to work with is
Is there a pattern, or built in function I am missing or shall I just loop through like so public List<MyObject> convert(List<String> myStrings){
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references,or expertise, but this question will likely solicit debate, a
I\'m struggling with how i\'m going to design my service fetching pattern i\'ve come up with this so far:
I have about 1000 user accounts in my application in company. The users besides their intranet emails have also internet emails(via POP3, SMTP, IMAP). There is a Java application, which I call worker,
public class MyPojo{ String required; Integer optionalOne; Integer optionalTwo; private MyPojo(Builder builder){
I\'m trying to develop a survey application that can deal with various types of responses, such as boolean, multiple choice, as well as ranges from 1-5, 1-10, 1-100, -2 to +2, even decimal values.So,
I\'m running into a design problem in my C# application. I have a DAL which supplies data for several different customers from different databases. Until now these databases have 开发者_运维问答had th
Let\'s assume I have a class which defines an image object. The image can belong to an album, and the album can belong to a folder. This data is stored in MySQL. The data is also cached. In the cache,