If Plus is given a single argument it just returns the argument.
Plus
In[1]:= Plus[3] Out[1]= 3
So if the single argument is a pattern, the unchanged pattern will be returned.
Therefore:
In[2]:= MatchQ[u*w, Times[a_, Plus[b_]]] Out[2]= True