CaptainAwesomePants

2,197
reputation
246 views

Registered User

name CaptainAwesomePants
member for 9 months
seen yesterday
website
location
age
1d
answered How to overcome fear of user-input (web development)
Dec
16
asked Turning a screenshot into a prototype with Grails
Dec
9
answered Write a method, public boolean isPrime (int n)
Dec
3
asked Can you answer this 2009 ACM International Collegiate Programming Contest Finals problem?
Dec
3
awarded  Nice Question
Dec
2
awarded  Popular Question
Oct
30
awarded  Nice Answer
Oct
23
awarded  Nice Question
Oct
22
comment Weaknesses of Hibernate
I'm sure you're right, but would you mind telling me how to do use enums in Hibernate without annotations, or point me to documentation of such a feature?
Oct
22
comment Weaknesses of Hibernate
@ChssPly76 Hibernate specifically recommends that it NOT be a private constructor. docs.jboss.org/hibernate/core/… Also, I'm not sure why the requirement that I modify my domain objects to suit Hibernate isn't a "valid" concern.
Oct
22
comment Weaknesses of Hibernate
I'll agree with you that complaining about how it caches is probably unfair, so I removed that bit. However, I don't use annotations: I use hbm.xml files. I can't find a single reference to enumerations anywhere in the Hibernate core documentation to enums. If you know of a way, though, I'd love to know about it. docs.jboss.org/hibernate/stable/…
Oct
22
revised Weaknesses of Hibernate
deleted 471 characters in body
Oct
22
comment Weaknesses of Hibernate
This is something that always bothered me. All of my domain objects MUST have a zero-argument constructor. If I want to do any sort of non-persistent initialization, I have to either do it explicitly after Hibernate retrieves the object, or I have to hook some sort of Hibernate interceptor in, which is really tricky. I really wish Spring and Hibernate especially could play nicer with this issue.
Oct
22
answered Weaknesses of Hibernate
Oct
22
comment Why is (a | b ) equivalent to a - (a & b) + b?
This is also a great answer, thanks!
Oct
21
comment Why is (a | b ) equivalent to a - (a & b) + b?
That's a great answer, exactly what I was looking for and easy to understand. Thanks a lot!
Oct
21
asked Why is (a | b ) equivalent to a - (a & b) + b?
Oct
19
comment caching spring/hibernate webapp
Not exactly. Query caching seems neat, but also limited and prone to frequent flushing in many situations. I was hoping for some way to cache arbitrary calls to the DAO more generically, but I'm sure that's exactly what I want. I'm just sort of wondering if there are any standard techniques out there I'm not aware of. For instance, what might stack overflow use to render its front page, or does every visit trigger a database read?
Oct
19
asked caching spring/hibernate webapp
Oct
13
comment Solr DIH — How to handle deleted documents?
That's a great list! I'm still using 1.3, but that's a convincing reason to look into switching.
Oct
12
asked Solr DIH — How to handle deleted documents?
Oct
6
awarded  Popular Question
Sep
26
comment Regular expression removing all words shorter than n
If you slightly changed that to \b\w{1,2}\s?\b, that might address the whitespace issue.
Sep
18
asked Testing a card deck shuffler
Sep
16
comment QA vs Development Ratio
I think that this is generally a very good comment, but just to stress how important QA is, you misspelled "medical imaging devices." Always be concerned with bugs when dealing with radiation machines (especially if they match the regular expression therac-[0-9]+ )
Sep
14
answered What does the percent CPU mean?
Sep
14
answered Odds of 1st, 2nd, 3rd place
Sep
11
accepted Mapping enum to a table with hibernate annotation
Sep
3
accepted Circular Dependency and Spring-powered Event Queue
Sep
3
answered Circular Dependency and Spring-powered Event Queue
Sep
3
answered Inheritance in Hibernate Annotations??
Sep
2
answered Should I do a degree and get some accredited qualifications, or continue to go down the self-taught route?
Aug
31
comment Questions about SUN certifications
While I generally agree with this, I don't necessarily think that college is for everybody. Some folks are clever technically, need a job right now and not four years from now, and need some sort of formal recognition so that you don't throw away their resume.
Aug
27
asked HQL 1 to many count() question
Aug
24
asked Inserting a generated value into a Hibernate record
Aug
23
comment Impressive examples in Java?
This is a very good idea. Java's library is very, very good at accessing network resources, which C and Pascal are much worse at. A quick example of Java's pros vs. C's cons would be a 10 line program that loaded an image from the Internet and displayed it.
Aug
23
asked User-sortable records
Aug
23
awarded  Nice Answer
Aug
21
comment Amazon S3: when/why
While this is true, you can have buckets with names that look just like a folder hierarchy. For example, "work", "work/specialClients", "work/specialClients/Acme". It's not a real hierarchy, but you could treat it as one with a bit of effort.
Aug
21
comment Circular Dependency and Spring-powered Event Queue
Most of my beans use setters, but at least a few are legacy and both have mandatory constructors and cannot be Spring-aware, unfortunately. But definitely a good idea!
Aug
21
asked Circular Dependency and Spring-powered Event Queue
Aug
20
comment Spring and the anemic domain model
The Hibernate interceptor is an interesting idea. I like not having to make scary-looking edits to my Tomcat classloader.
Aug
20
asked Spring and the anemic domain model
Aug
17
comment @Autowired and TransactionProxyFactoryBean?
autowire-candidate="false" is a cool trick that I was not aware of. Thanks for the suggestion!
Aug
14
asked @Autowired and TransactionProxyFactoryBean?
Aug
14
comment “it works-don’t touch it” and continues engineering
So just do it to the classes that you have to change anyway. I make a habit of always removing unused imports and clearing up all warnings in any files I touch. If I have to change more than a few lines, I'll often run the auto-formatter on the whole file. Just keep leaving things a little better than you found them.
Aug
12
comment Spring XML inner bean question
I tried to use it to power a sort of "don't need to register yourself" event queue and thought myself bloody clever. But then I ran into this particular can of worms.
Aug
12
comment Spring XML inner bean question
Ah, to the contrary! @Autowired has some surprising, lesser-known uses. To quote Spring's documentation: "It is also possible to provide all beans of a particular type from the ApplicationContext by adding the annotation to a field or method that expects an array of that type"
Aug
12
asked Spring XML inner bean question
Aug
9
asked How to handle a few dozen flags in a database